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.
如何检索 IDFCollection 中的值并将其存储到 java.util.Collection 或 ArrayList。有什么直接的方法吗?
您可以使用方法迭代 IDfCollection IDfCollection.next()。如果next()返回true,则可以使用 IDfCollection 的 getter 方法访问返回的数据行。当您next()再次调用时,它将移动到下一行(如果有)。通常从集合中读取是在 while 循环中完成的:
IDfCollection.next()
next()
true
while(col.next()) { String value1 = col.getString("column1"); }
要将值存储到列表中 - 只需在之前创建一个实例while并将其填充到循环中。
while