Map<Long, List<List<RealtimeDataAO>>> collect = siteDeviceRelatedList.stream().collect(Collectors.groupingBy(SiteDeviceRelatedDO::getSiteId, Collectors.mapping(o -> deviceRealtimeMap.get(o.getDeviceId()), Collectors.toList())));怎么返回值变成Map<Long, List<RealtimeDataAO>>形式
时间: 2024-03-12 07:04:07 浏览: 50
map转化为list
5星 · 资源好评率100%
要将 `Map<Long, List<List<RealtimeDataAO>>>` 转换为 `Map<Long, List<RealtimeDataAO>>` 的形式,可以使用 `flatMap` 和 `collect` 方法来实现。 代码示例如下:
```java
Map<Long, List<RealtimeDataAO>> collect = siteDeviceRelatedList.stream()
.collect(Collectors.groupingBy(SiteDeviceRelatedDO::getSiteId,
Collectors.mapping(o -> deviceRealtimeMap.get(o.getDeviceId()), Collectors.toList())))
.entrySet().stream()
.flatMap(e -> e.getValue().stream().flatMap(List::stream)
.map(item -> new AbstractMap.SimpleEntry<>(e.getKey(), item)))
.collect(Collectors.groupingBy(Map.Entry::getKey,
Collectors.mapping(Map.Entry::getValue, Collectors.toList())));
```
代码中使用 `entrySet` 方法将 `Map<Long, List<List<RealtimeDataAO>>>` 转换为 `Stream<Map.Entry<Long, List<List<RealtimeDataAO>>>>`,然后使用 `flatMap` 方法将 `List<List<RealtimeDataAO>>` 打平为 `List<RealtimeDataAO>`。接着使用 `map` 方法将 `List<RealtimeDataAO>` 中的元素与对应的 `siteId` 组成一个新的 `Map.Entry` 对象。最后再使用 `groupingBy` 和 `mapping` 方法将 `Map.Entry<Long, RealtimeDataAO>` 转换为 `Map<Long, List<RealtimeDataAO>>` 的形式。
阅读全文