我基本上有一个包含ArrayList<String>,Boolean
. 我需要从哈希表中检索密钥。然后我需要从中获取第一个值,ArrayList<String>
这是关键。
我试过了 :
Hashtable<ArrayList<String>,Boolean> tableRows = tableRead(); // returns the Hashtable.
ArrayList<String> IDs = new ArrayList<String>();
Iterator it = tableRows.keySet().iterator();
while (it.hasNext()) {
IDs.add(it.next().get(0));
}
但是,这给了我一个错误:cannot find symbol
[javac] symbol: method get(int)
[javac] location: class Object
只是给出一个功能性的想法:我基本上将整个 DB 行作为 Hashtable 中的键。我只需要取回身份证。
有人可以帮我解决这个问题吗?