Map map = new HashMap(); Iterator it = map.keySet().iterator(); while(it.hasNext()){ int key = (Integer) it.next(); String value = map.get(key); } 这个我写的一个例子。。。没有直接遍历值的方法 只能先得到Map 中的key的集合然后遍历出value