Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以加入从 java 中的 hbase 检索到的两个或多个结果集?
不,不可能加入 JDBC 结果集。
但是,如果它们兼容,您可以获取它们的结果并手动组合它们。(如果它们属于同一实体)。
编辑 :
如果您只需要组合两个相同类型的列表,您可以这样做
list1.addAll(list2);