Java中用for循环取Map
网络整理 - 07-26
根据JDK5的新特性,Java中用for循环取Map,例如循环Map的Key
view sourceprint?
1 for(String dataKey : paraMap.keySet()) {
2 System.out.println(dataKey );
3 }
注意的是,paraMap 是怎么样定义的,如果是简单的Map paraMap = new HashMap ();那前面的String就只能换成Object了.
循环整个map的key和value
view sourceprint?01 Map<Integer,String> map = new LinkedHashMap<Integer,String>();
02 map.put(1, "星期一");
03 map.put(2, "星期二");
04 map.put(3, "星期三");
05 map.put(4, "星期四");
06 map.put(5, "星期五");
07 map.put(6, "星期六");
08 map.put(7, "星期日");
09
10 for(Map.Entry<Integer, String> entry: map.entrySet()) {
11 System.out.print(entry.getKey() + ":" + entry.getValue() + "\t");
12 }
輸出:
1:星期一 2:星期二 3:星期三 4:星期四 5:星期五 6:星期六 7:星期日