首页 > 代码库 > java遍历Map

java遍历Map

    for(String key: map.keySet()) {           System.out.println(key+":"+map.get(key));        }

 

java遍历Map