private static String getValue(KeySpace ks, String columnPath, String column)
throws UnsupportedEncodingException, InvalidRequestException,
UnavailableException, TException, NotFoundException {
ColumnPath cp = new ColumnPath("Standard1", null,
columnPath.getBytes("utf-8"));
Column col = ks.getColumn(column, cp);
String value = new String(col.getValue(), "utf-8");