码迷,mamicode.com
首页 > 其他好文 > 详细

对HashMap的value排序

时间:2014-06-05 07:02:28      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:map排序

HashMap<String,Long> sMap = new HashMap<String,Long>();
 sMap.put("张三", 90L);
 sMap.put("李四", 79L);
 sMap.put("王五", 88L);
 sMap.put("赵六", 76L);
 
 
 ArrayList<Entry<String,Long>> list = new ArrayList<Entry<String,Long>>(sMap.entrySet());   
 
 Collections.sort(list, new Comparator<Object>(){   
           public int compare(Object e1, Object e2){   
         int v1 = Integer.parseInt(((Entry<String,Long>)e1).getValue().toString());   
         int v2 = Integer.parseInt(((Entry)e2).getValue().toString());   
         return v2-v1;   
            
     }   
 });   
   
 for (Entry<String, Long> e : list){   
     System.out.println(e.getKey()+"  "+e.getValue());   

 }


输出结果:

张三  90
王五  88
李四  79
赵六  76

对HashMap的value排序,布布扣,bubuko.com

对HashMap的value排序

标签:map排序

原文地址:http://blog.csdn.net/zengchao2013/article/details/27354127

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