I think this should go to HBase user mailing list. Regards, Kai
From: [email protected] [mailto:[email protected]] Sent: Wednesday, March 23, 2016 11:14 AM To: user <[email protected]> Subject: How to get hbase row key that i used even though the method result.isEmpty( ) Hi, like this: Result[] result = table.get(lg); List<String> rk = new ArrayList<String>(); for(int i=0;i<result.length;i++){ if(result[i].isEmpty()){ }else{ rk.add(result[i].getRow().toString()); } } return rk; } i want to deal with some data when result[i].isEmpty() . i must get hbase row key that i used to decide if it exists, the string value is my i want. how to get it。 Thanks & Regards zhang_way ________________________________ [email protected]<mailto:[email protected]>
