迭代器遍历map集合
//通过键值对来遍历 Iterator<Map.Entry<String,String>> iterator = map.entrySet().iterator();//返回所有的entry实体 while (iterator.hasNext()) { Map.Entry<String, S...