java jdk1.8的stream复杂和简单的分组

获取List对象中的某个参数时:
List> param = new ArrayList<>();
Map map = new HashMap<>();
map.put("id","1213");
map.put("name","test");
List strList = param.stream().map(key ->key.get("name")).collect(Collectors.toList());

简单参数分组:
List damoformList = new ArrayList<>();
Map>> collect = damoformList.stream()
                .collect(Collectors.groupingBy(DamoForm::getId()))
                .entrySet()
                .stream()
                .collect(Collectors.toMap(
                        entry -> entry.getKey(),
                        entry -> entry.getValue().stream().collect(Collectors.groupingBy(DamoForm::getName()))
                ));
针对List复杂排序,多个条件进行排序:
应用场景:针对List中某个字段的数据进行双重倒序的方式排序,代码有点复杂,不明白的可以留言。

List damoformList = new ArrayList<>();
List> result = damoformList.stream()
         .collect(Collectors.groupingBy(DamoForm::getPartClass))
         .entrySet()
         .stream()
         .sorted((o1, o2) -> {
              /*
               * 这里排序,任何有1的排在前,全部是0排在后
               */
               Integer sort1 = o1.getValue().stream().anyMatch(item -> item.getIsFlag() > 0) ? -1 : 1;
               Integer sort2 = o2.getValue().stream().anyMatch(item -> item.getIsFlag() > 0) ? -1 : 1;
               return sort1.compareTo(sort2);
         })
         .map(entry -> {
               Map map = Maps.newHashMapWithExpectedSize(2);
               map.put("repairItemTypeName", entry.getKey());
                    /*
                     * 这里排序,1排在前,0排在后
                     */
                    List damoVOList = entry.getValue().stream()
                            .sorted(Comparator.comparingInt(o -> (o.getIsFlag() * -1)))
                            .collect(Collectors.toList());
                    map.put("repairTypeList", itemDescFormList);
                    return map;
          })
          .collect(Collectors.toList());


 

 

 

 
 

 

你可能感兴趣的:(java,spring,boot)