如何迭代<string,pojo =“”>?</string,>的地图

时间:2010-10-22 09:22:08

标签: java map hashmap pojo

我有一个Map<String, Person>(实际上我正在使用更复杂的POJO,但为了我的问题而简化它)

Person看起来像:

class Person
{
  String name;
  Integer age;

  //accessors
}

如何遍历此地图,打印出密钥,然后是人名,然后是人员年龄,例如:

System.out.println(String.format("Key : %s Name : %s Age : %s", a, b, c));
  • A是Map&lt; String ,Person&gt;
  • 的关键
  • B是Person.getName()
  • 的名称
  • C是来自Person.getAge()
  • 的年龄

我可以使用HashMap docs中详细说明的.values()从地图中提取所有值,但我不确定如何获取密钥

2 个答案:

答案 0 :(得分:9)

What about entrySet()

HashMap<String, Person> hm = new HashMap<String, Person>();

hm.put("A", new Person("p1"));
hm.put("B", new Person("p2"));
hm.put("C", new Person("p3"));
hm.put("D", new Person("p4"));
hm.put("E", new Person("p5"));

Set<Map.Entry<String, Person>> set = hm.entrySet();

for (Map.Entry<String, Person> me : set) {
  System.out.println("Key :"+me.getKey() +" Name : "+ me.getValue().getName()+"Age :"+me.getValue().getAge());

}

答案 1 :(得分:1)

您可以使用:

示例:

Map<String, Person> personMap = ..... //assuming it's not null
Iterator<String> strIter = personMap.keySet().iterator();
synchronized (strIter) {
    while (strIter.hasNext()) {
        String key = strIter.next();
        Person person = personMap.get(key);

        String a = key;
        String b = person.getName();
        String c = person.getAge().toString();
        System.out.println(String.format("Key : %s Name : %s Age : %s", a, b, c));

    }
}