public static void main(String[] args) throws IOException, InterruptedException {
Configuration conf = HBaseConfiguration.create();
HBaseHelper helper = HBaseHelper.getHelper(conf);
helper.dropTable("testtable");
helper.createTable("testtable", "colfam1");
helper.put("testtable", "row1", "colfam1", "qual1", 1L, "val1");
System.out.println("Before batch call...");
helper.dump("testtable", new String[] { "row1" }, null, null);