每个Entry对象可通过getKey()、getValue()获得Key或Value用于比较。换言之:我们也可以通过Entry对象实现按Key排序。 class MyComparator implements Comparator<Map.Entry>{ public int compare(Map.Entry o1, Map.Entry o2) { return ((String)o1.getValue()).compareTo((String)o2.getValue()); } } 1. 2...