码迷,mamicode.com
首页 > 编程语言 > 详细

Map集合按value的大小排序

时间:2015-01-19 14:06:39      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:

 1 public static void main(String[] args) {
 2         Map<String, Integer> map = new HashMap<String, Integer>();
 3         map.put("os5", 10);
 4         map.put("os4", 13);
 5         map.put("os3",4);
 6         map.put("os2",6);
 7         map.put("os1", 20);
 8          List<Map.Entry<String, Integer>> infoIds = new ArrayList<Map.Entry<String, Integer>>(map.entrySet()); 
 9          Collections.sort(infoIds, new Comparator<Map.Entry<String, Integer>>() { 
10               public int compare(Map.Entry<String, Integer> o1, 
11               Map.Entry<String, Integer> o2) { 
12               return (o2.getValue() - o1.getValue()); 
13               } 
14         });
15          for(int i=0;i<infoIds.size();i++){
16              System.out.println(infoIds.get(i));
17          }
18          /* 返回的结果
19             os1=20
20             os4=13
21             os5=10
22             os2=6
23             os3=4 */
24     }

 

Map集合按value的大小排序

标签:

原文地址:http://www.cnblogs.com/Wen-yu-jing/p/4233573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!