Map a = new HashMap();
//方法一
Iterator it = a.entrySet().iterator();
while (it.hasNext()) {
Map.Entry pairs = (Map.Entry) it.next();
System.out.println(pairs.getValue());
}
//以下方法需要jdk5以上支持
//方法二
for(String str:akeySet()){
System.out.println(str);
}
//方法三
for(Map.Entry entry:a.entrySet()){
System.out.println(entry.getKey()+"="+entry.getValue());
}