Joining two ResultSets from HBase in Java?
问题 Is it possible to join two or more resultsets which are retrieved from hbase in java? 回答1: No it's not possible to join JDBC result sets. However you can get their results and manually combine them if they are compatible. (if they are of the same entity). EDIT : If you simply need to combine two lists of the same type you can do list1.addAll(list2); 来源: https://stackoverflow.com/questions/16767188/joining-two-resultsets-from-hbase-in-java