Java HashMap:如何按索引获取键和值?
我正在尝试使用HashMap将唯一字符串映射到字符串ArrayList,如下所示:
HashMap<String, ArrayList<String>>
基本上,我希望能够通过数字访问密钥,而不是通过使用密钥的名称。我希望能够访问所述密钥的值,以迭代它。我正在想象这样的事情:
for(all keys in my hashmap) {
for(int i=0; i < myhashmap.currentKey.getValue.size(); i++) {
// do things with the hashmaps elements
}
}
有没有一种简单的方法来做到这一点?