一、通过 key 匹配 Value 遍历Set keySet = map.keySet();// 通过增强for来进行遍历for (Object key : keySet) { System.out.println(key + "-" + map.get(key));}//