根据JDK的新特性,用For循环Map,例如循环Map的Key
Java代码
1 2 3 4 | for (String dataKey : paraMap.keySet())
{
System.out.println(dataKey );
}
|
登录后复制
这里要注意的是,paraMap是怎么样定义的,如果是简单的Map paraMap = new HashMap();那前面的String就只能换成Object了.
对整Map的key和value都进行循环,如下:
Java代码
1 2 3 4 | for (Map.Entry<String, Object> entry : paraMap.entrySet())
{
System.out.println(entry.getKey()+ ": " +entry.getValue());
}
|
登录后复制
要是在以前,则是这么循环的:
java 代码
1 2 3 4 5 6 | Iterator it = paraMap.entrySet().iterator();
while (it.hasNext())
{
Map.Entry pairs = (Map.Entry)it.next();
System.out.println(pairs.getKey() + " = " + pairs.getValue());
}
|
登录后复制
更多Java Map的几种循环方式总结相关文章请关注PHP中文网!