对HashMap 进行排序

来源:互联网 发布:淘宝手机积分怎么查 编辑:程序博客网 时间:2024/06/05 17:26
public static Map sortMap(Map map) {Map oneMap = new LinkedHashMap() ; ArrayList<Entry<String, String>> l = new ArrayList<Entry<String, String>>(map.entrySet());Collections.sort(l, new Comparator<Object>() {public int compare(Object e1, Object e2) {int v1 = Integer.parseInt(((Entry<String, String>) e1).getValue().toString());int v2 = Integer.parseInt(((Entry) e2).getValue().toString());return  v2-v1; // 降序 v1-v2升序}});for (Entry<String, String> e : l) {oneMap.put(e.getKey(), e.getValue()) ;}return oneMap ;}

原创粉丝点击