本文介绍了Java 8列表到嵌套地图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个类A
的列表,如
class A {
private Integer keyA;
private Integer keyB;
private String text;
}
我想将aList
转移到keyA
和keyB
所以我创建下面的代码.
So I create below code.
Map<Integer, Map<Integer,List<A>>> aMappedByKeyAAndKeyB = aList.stream()
.collect(Collectors.collectingAndThen(Collectors.groupingBy(A::getKeyA), result -> {
Map<Integer, Map<Integer, List<A>>> nestedMap = new HashMap<Integer, Map<Integer, List<A>>>();
result.entrySet().stream().forEach(e -> {nestedMap.put(e.getKey(), e.getValue().stream().collect(Collectors.groupingBy(A::getKeyB)));});
return nestedMap;}));
但是我不喜欢这段代码.
But I don't like this code.
我认为,如果我使用flatMap
,我可以编写出比这更好的代码.
I think If I use flatMap
, I can better code than this.
但是我不知道如何使用flatMap
来实现这种行为.
But I don't know How use flatMap
for this behavior.
推荐答案
似乎您只需要级联的groupingBy
:
Map<Integer, Map<Integer,List<A>>> aMappedByKeyAAndKeyB = aList.stream()
.collect(Collectors.groupingBy(A::getKeyA,
Collectors.groupingBy(A::getKeyB)));
这篇关于Java 8列表到嵌套地图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!