Java - 使用Stream展平嵌套映射

knc*_*knc 7 java hashmap java-8 java-stream

我一直在搞乱Java 8 Stream API并遇到了一些我只能通过传统的for循环来做的事情.

给出一个嵌套的地图

{
    1999: {
             3: [23, 24, 25],
             4: [1, 2, 3]
          },
    2001: {
             11: [12, 13, 14],
             12: [25, 26, 27]

          }
}
Run Code Online (Sandbox Code Playgroud)

我该如何将其转化为

['23,3,1999', '24,3,1999', '25,3,1999', '1,4,1999', '2,4,1999', '3,4,1999', '12,11,2001', '13,11,2001', '14,11,2001', '25,12,2001', '26,12,2001', '27,12,2001']
Run Code Online (Sandbox Code Playgroud)

基本上我想要复制:

    Map<Integer, Map<Integer, List<Integer>>> dates...
    List<String> flattened = new ArrayList<>();
    for (Integer key1 : map.keySet()) {
        for (Integer key2 : map.get(key1).keySet()) {
            for (Integer value : map.get(key1).get(key2)) {
                flattened.add(value + "," + key2 + "," + key1);
            }
        }
    }
Run Code Online (Sandbox Code Playgroud)

Har*_*ezz 12

试试这个例子:

public static void main(String[] args) {
    Map<Integer, Map<Integer, List<Integer>>> dates =
        new HashMap<Integer, Map<Integer, List<Integer>>>() {{
            put(1999, new HashMap<Integer, List<Integer>>() {{
                put(3, Arrays.asList(23, 24, 25));
                put(4, Arrays.asList(1, 2, 3));
            }});
            put(2001, new HashMap<Integer, List<Integer>>() {{
                    put(11, Arrays.asList(12, 13, 14));
                    put(12, Arrays.asList(25, 26, 27));
            }});
        }};

    dates.entrySet().stream().flatMap(year ->
        year.getValue().entrySet().stream().flatMap(month ->
            month.getValue().stream()
                .map(day -> day + "," + month.getKey() + "," + year.getKey())))
        .forEach(System.out::println);
}
Run Code Online (Sandbox Code Playgroud)

如果你需要他们排序year,然后monthday试试这个:

    dates.entrySet().stream().flatMap(year ->
        year.getValue().entrySet().stream().flatMap(month ->
            month.getValue().stream()
                .map(day -> Arrays.asList(year.getKey(), month.getKey(), day))))
        .sorted(Comparator.comparing(l -> l.get(0)*10000 + l.get(1)*100 + l.get(2)))
        .forEach(System.out::println);
Run Code Online (Sandbox Code Playgroud)


小智 5

 items
            .entrySet()
            .stream()
            .flatMap(
                    l-> l.getValue().entrySet().stream()
                            .flatMap(
                                    ll->ll.getValue().stream()
                                         .map(lll+","+ll.getKey()+","+l.getKey())))
            .collect(Collectors.toList())
            .forEach(System.out::println);
Run Code Online (Sandbox Code Playgroud)