java和groovy对List中的Map按照某一个key的值相同的进行分组
groovy中
import java.util.stream.Collectors
List params = []
Map temp = [:]
temp.put("id",1)
temp.put("name","qq")
temp.put("height","180")
params.add(temp)
temp = new HashMap()
temp.put("id",1)
temp.put("name","www")
temp.put("height","111")
params.add(temp)
temp = new HashMap()
temp.put("id",2)
temp.put("name","eee")
temp.put("height","222")
params.add(temp)
Map<Integer, List<Map>> groupBy = params.stream().collect(Collectors.groupingBy({ it.id}))
System.out.println(groupBy)
排序后的结果是一个Map,它的key是分组的组号,value是List,List中是分组后的Map
java中
List<Map<String,Object>> params = new ArrayList<>();
Map<String,Object> temp = new HashMap<>();
temp.put("id",1);
temp.put("name","qq");
temp.put("height","180");
params.add(temp);
temp = new HashMap<>();
temp.put("id",1);
temp.put("name","www");
temp.put("height","111");
params.add(temp);
temp = new HashMap<>();
temp.put("id",2);
temp.put("name","eee");
temp.put("height","222");
params.add(temp);
Map groupBy = params.stream().collect(Collectors.groupingBy(it->it.get("id")));
System.out.println(groupBy);
原文作者:好大的月亮
原文地址: https://blog.csdn.net/weixin_43944305/article/details/103703385
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/weixin_43944305/article/details/103703385
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
相关文章