12

我有一个类A列表

class A {
 private Integer keyA;
 private Integer keyB;
 private String text;
}

我想转移到由和映射的aList嵌套MapkeyAkeyB

所以我创建了下面的代码。

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;}));

但我不喜欢这段代码。

我想如果我使用flatMap,我可以编写比这更好的代码。

但我不知道如何使用flatMap这种行为。

4

1 回答 1

20

似乎你只需要一个级联groupingBy

Map<Integer, Map<Integer,List<A>>> aMappedByKeyAAndKeyB = aList.stream()
    .collect(Collectors.groupingBy(A::getKeyA, 
                 Collectors.groupingBy(A::getKeyB)));
于 2015-11-11T05:31:37.583 回答