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

对List<Map<String, Object>>集合排序

时间:2014-11-05 19:11:54      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   os   sp   div   on   

 

private void mySort(List<Map<String, Object>> list) {
        //list为待排序的集合,按SEQ字段排序
        Comparator<Map<String, String>> mapComprator = new Comparator<Map<String, String>>() {  
            @Override  
            public int compare(Map<String, String> o1,  
                    Map<String, String> o2) {  
                if (Integer.valueOf(o1.get("SEQ").toString()) > Integer.valueOf(o2.get("SEQ").toString())) {  
                    return 1;  //此处是按降序排序
                } else {  
                    return -1;  
                }  
            }  
        };  
        Collections.sort((List)list, mapComprator);  
    }

 

对List<Map<String, Object>>集合排序

标签:style   blog   io   color   ar   os   sp   div   on   

原文地址:http://www.cnblogs.com/dj168/p/4076725.html

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