HashMap 一般遍历 Map map=new HashMap()Iterator it=map.entrySet().iterator();while(it.hasNext){Map.Entry entry=it.next(); Object value=entry.getValue();}