stream多字段分组
Posted 番茄红了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stream多字段分组相关的知识,希望对你有一定的参考价值。
Map<String, List<Map<String, String>>> appInfoListByGroup = appInfoLists.stream().collect(Collectors.groupingBy(m -> m.get(Constants.APP_GROUP_ID) + "_" + m.get(Constants.APP_GROUP_NAME)));
以上是关于stream多字段分组的主要内容,如果未能解决你的问题,请参考以下文章
Java8 stream 中利用 groupingBy 进行多字段分组
java8 lambda Stream 将分组后的对象所有字段相加得到一个对象