Map根据value值排序

Map的key是机场名字,value 是流量。根据流量倒序排序

/**
     * 使用 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;
    }
   public static class MapValueComparator implements Comparator> {

        @Override
        public int compare(Entry me1, Entry me2) {
            //按照从大到小的顺序排列,如果想正序 调换me1 me2的位置
            return me2.getValue().compareTo(me1.getValue());
        }
    }

 

你可能感兴趣的:(java基础知识)