List> resultList按某些字段排序

时间:2022-01-21 23:17:54
    public void listSort(List<Map<String,Object>> resultList) throws Exception{
          // resultList是需要排序的list,其内放的是Map
          // 返回的结果集
          Collections.sort(resultList,new Comparator<Map<String,Object>>() {

           public int compare(Map<String, Object> o1,Map<String, Object> o2) {

            //o1,o2是list中的Map,可以在其内取得值,按其排序,此例为升序,s1和s2是排序字段值
               Integer s1 = (Integer) o1.get("sequence");
               Integer s2 = (Integer) o2.get("sequence");

            if(s1>s2) {
             return 1;
            }else {
             return -1;
            }
           }
          });
        
         }