2009年2月3日星期二

在不知道Map中key的情况下读取Map

Map map=new HashMap();
Iterator it=map.entrySet().iterator();
while(it.hasNext()){
Map.Entry tt = (Map.Entry)it.next();
System.out.println(tt.getKey());
System.out.println(tt.getValue());
}

0 评论:

发表评论