概述
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);
最后
以上就是羞涩机器猫为你收集整理的java和groovy对List中的Map按照某一个key的值相同的进行分组的全部内容,希望文章能够帮你解决java和groovy对List中的Map按照某一个key的值相同的进行分组所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复