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

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

简单参数分组:
List<DamoForm> damoformList = new ArrayList<>();
Map<String, Map<String, List<DamoForm>>> 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<DamoForm> damoformList = new ArrayList<>();
List<Map<String, Object>> 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<String, Object> map = Maps.newHashMapWithExpectedSize(2);
               map.put("repairItemTypeName", entry.getKey());
                    /*
                     * 这里排序,1排在前,0排在后
                     */
                    List<DamoVO> damoVOList = entry.getValue().stream()
                            .sorted(Comparator.comparingInt(o -> (o.getIsFlag() * -1)))
                            .collect(Collectors.toList());
                    map.put("repairTypeList", itemDescFormList);
                    return map;
          })
          .collect(Collectors.toList());




 

 

 

 
 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

程序媛-承哥

你的鼓励是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值