Map排序的方式有很多种,这里记录下自己总结的两种比较常用的方式:按键排序(sort by key), 按值排序(sort by value)。

1、按键排序

jdk内置的java.util包下的TreeMap既可满足此类需求,向其构造方法 TreeMap(Comparator super K> comparator)  传入我们自定义的比较器即可实现按键排序。

代码:

1 public classMapSortDemo {2
3 public static voidmain(String[] args) {4
5 Map map = new TreeMap();6
7 map.put("KFC", "kfc");8 map.put("WNBA", "wnba");9 map.put("NBA", "nba");10 map.put("CBA", "cba");11
12 Map resultMap = sortMapByKey(map); //按Key进行排序
13
14 for (Map.Entryentry : resultMap.entrySet()) {15 System.out.println(entry.getKey() + " " +entry.getValue());16 }17 }18
19 /**
20 * 使用 Map按key进行排序21 *@parammap22 *@return
23 */
24 public static Map sortMapByKey(Mapmap) {25 if (map == null ||map.isEmpty()) {26 return null;27 }28
29 Map sortMap = new TreeMap(30 newMapKeyComparator());31
32 sortMap.putAll(map);33
34 returnsortMap;35 }36 }37
38
39 比较器类40
41 class MapKeyComparator implements Comparator{42
43 @Override44 public intcompare(String str1, String str2) {45
46 returnstr1.compareTo(str2);47 }48 }

2、按值排序

原理:将待排序Map中的所有元素置于一个列表中,接着使用Collections的一个静态方法 sort(List list, Comparator super T> c)

来排序列表,同样是用比较器定义比较规则。排序后的列表中的元素再依次装入Map,为了肯定的保证Map中元素与排序后的List中的元素的顺序一致,使用了LinkedHashMap数据类型。

public class MapSortDemo {
public static void main(String[] args) {
Map map = new TreeMap();
map.put("KFC", "kfc");
map.put("WNBA", "wnba");
map.put("NBA", "nba");
map.put("CBA", "cba");
Map resultMap = sortMapByKey(map); //按Key进行排序
// Map resultMap = sortMapByValue(map); //按Value进行排序
for (Map.Entry entry : resultMap.entrySet()) {
System.out.println(entry.getKey() + " " + entry.getValue());
}
}
/**
* 使用 Map按value进行排序
* @param map
* @return
*/
public static Map sortMapByValue(Map oriMap) {
if (oriMap == null || oriMap.isEmpty()) {
return null;
}
Map sortedMap = new LinkedHashMap();
List> entryList = new ArrayList>(
oriMap.entrySet());
Collections.sort(entryList, new MapValueComparator());
Iterator> iter = entryList.iterator();
Map.Entry tmpEntry = null;
while (iter.hasNext()) {
tmpEntry = iter.next();
sortedMap.put(tmpEntry.getKey(), tmpEntry.getValue());
}
return sortedMap;
}
}

比较器类

class MapValueComparator implements Comparator> {
@Override
public int compare(Entry me1, Entry me2) {
return me1.getValue().compareTo(me2.getValue());
}
}