Fetch data from HTable - Create Get instance with Row Key "rowkey1"Get get = new Get(Bytes.toBytes("rowkey1")); - Specify column family ("sig:botnet")get.addColumn(Bytes.toBytes("sig"), Bytes.toBytes("botnet"));Result result = htable.get(get); - Get value of column family (sig:botnet ==> value)byte[] val = result.getValue(Bytes.toBytes("sig"), Bytes.toBytes("botnet"));System.out.println("Value:"..