java jdk1.8 使用stream流进行list 分组归类操作
作者:java客栈的小二 发布时间:2022-10-16 10:03:52
标签:java,jdk1.8,stream,list,分组
我就废话不多说了,大家还是直接看代码吧~
import com.alibaba.fastjson.JSON;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
/**
* @author czw
*/
public class Foo{
private String name;
private String type;
private Double typeValue;
private Integer count;
public Foo(String name, String type, Double typeValue, Integer count) {
this.name = name;
this.type = type;
this.typeValue = typeValue;
this.count = count;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Double getTypeValue() {
return typeValue;
}
public void setTypeValue(Double typeValue) {
this.typeValue = typeValue;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
@Override
public String toString() {
return "Foo{" +
"name='" + name + '\'' +
", type='" + type + '\'' +
", typeValue=" + typeValue +
", count=" + count +
'}';
}
public static void main(String[] args) {
List<Foo> fooList = new ArrayList<Foo>();
fooList.add(new Foo("A","san",1.0,2)) ;
fooList.add( new Foo("A","nas",13.0,1)) ;
fooList.add(new Foo("B","san",112.0,3)) ;
fooList.add(new Foo("C","san",43.0,5)) ;
fooList.add(new Foo("B","nas",77.0,7)) ;
List<List<Foo>> groupList = new ArrayList<>();
fooList.stream()
.collect(Collectors.groupingBy(Foo::getName,Collectors.toList()))
.forEach((name,fooListByName)->{
groupList.add(fooListByName);
});
System.out.println(JSON.toJSONString(groupList));
}
}
输出结果
[
[{
"count": 2,
"name": "A",
"type": "san",
"typeValue": 1
}, {
"count": 1,
"name": "A",
"type": "nas",
"typeValue": 13
}],
[{
"count": 3,
"name": "B",
"type": "san",
"typeValue": 112
}, {
"count": 7,
"name": "B",
"type": "nas",
"typeValue": 77
}],
[{
"count": 5,
"name": "C",
"type": "san",
"typeValue": 43
}]
]
补充知识: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());
来源:https://blog.csdn.net/wency935486/article/details/81184137


猜你喜欢
- 接上一篇写的截取电脑屏幕,我们在原来的基础上加一个选择区域的功能,实现自定义选择截图。个人比较懒,上一篇的代码就不重新设计了,就简单改一下呈
- 1. 开方:Math.sqrt(x);2. x的a方:Math.pow(x,a);3. 绝对值:Math.abs(x);4. BigInte
- 一、DataTable转XML#region DataTableToXml /// &
- 一. 可变字符串1. 简介在Java中,我们除了可以通过String类创建和处理字符串之外,还可以使用StringBuffer和String
- import java.text.ParseException;import java.text.SimpleDateFormat;impo
- 前些天,有一个需求要用SpringBoot的多环境,当时没有系统学习springboot ,所以在网上找来找去的找到了一个解决方案,并写了一
- 本文实例为大家分享了ExpandableListView二级分栏效果的具体代码,供大家参考,具体内容如下对ExpandableListVie
- 在项目里,我需要做一个Spring Boot结合Thymeleaf前端模版,结合JPA实现分页的演示效果。做的时候发现有些问题,也查了现有网
- 本文实例为大家分享了Android实现连连看游戏的具体代码,供大家参考,具体内容如下本人用 android studio 实现的源码主活动
- 本文主要介绍了Android 获取屏幕的多种宽高信息的示例代码,分享给大家,具体如下:包含的宽高信息如下图所示:在模拟器上获取到的数据:08
- 本文实例讲述了C#自定义签名章实现方法。分享给大家供大家参考。具体实现方法如下:using System;using System.Coll
- Volley简介我们平时在开发Android应用的时候不可避免地都需要用到网络技术,而多数情况下应用程序都会使用HTTP协议来发
- 快速入门在Spring Boot的工程中的pom.xml中引入spring-boot-starter-mail依赖:<dependen
- 一个popwindow,在弹出的时候背景是原界面的截图加高斯模糊效果:先给出popwindow的布局文件<?xml version=&
- 1、文件分为ASCII文件和二进制文件,ASCII文件也称文本文件,由一系列字符组成,文件中存储的是每个字符的ASCII码值。2、FILE
- 1.创建线程 在Java中创建线程有两种方法:使用Thread类和使用Runnable接口。在使用Runnable接口时需要建立
- 方法有4种:使用 String 类的 valueOf() 方法使用字符串连接使用 Character 类的 toString() 方法使用字
- @Autowired和static的关系一、发生的场景好几次有个同事因为把static用到Spring的@Autowired上,导致注入的对
- 一、准备官网下载IntelliJ IDEA 2017 并安装好下载汉化包 (链接: https://pan.baidu.com/s/1JkU
- 在开发的过程中大家一般都会选择使用数据线连接的方式进行调试,但是有些时候比如使用模拟器时就不能这样了,所以有必要来研究下怎么使用adb通过w