Java 8 convert Maplt;K, Listlt;Vgt;gt; to Maplt;V, Listlt;Kgt;gt;(Java 8 转换 Maplt;K, Listlt;Vgt;gt;到地图lt;V,列表lt;Kgt;gt;)
问题描述
我需要将 Map
转换为 Map
I need to convert Map<K, List<V>>
to Map<V, List<K>>
.
I've been struggling with this issue for some time.
Map
Map
.collect(Collectors.groupingBy(
Map.Entry::getKey,
Collectors.mapping(Map.Entry::getValue, toList())
)
但我找不到解决初始问题的方法.有一些易于准备的 java-8 方法吗?
But I can't find solve an initial issue. Is there some easy-to-ready-java-8 way to do it?
推荐答案
我认为你很接近,你需要将这些条目 flatMap
到 Stream
并从那里.我使用了已经存在的 SimpleEntry
,但你也可以使用某种 Pair
.
I think you were close, you would need to flatMap
those entries to a Stream
and collect from there. I've used the already present SimpleEntry
, but you can use a Pair
of some kind too.
initialMap.entrySet()
.stream()
.flatMap(entry -> entry.getValue().stream().map(v -> new SimpleEntry<>(entry.getKey(), v)))
.collect(Collectors.groupingBy(
Entry::getValue,
Collectors.mapping(Entry::getKey, Collectors.toList())
));
好吧,如果您不想为那些 SimpleEntry
实例增加额外的开销,您可以做一些不同的事情:
Well, if you don't want to create the extra overhead of those SimpleEntry
instances, you could do it a bit different:
Map<Integer, List<String>> result = new HashMap<>();
initialMap.forEach((key, values) -> {
values.forEach(value -> result.computeIfAbsent(value, x -> new ArrayList<>()).add(key));
});
这篇关于Java 8 转换 Map<K, List<V>>到地图<V,列表<K>>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 8 转换 Map<K, List<V>>到地图<V,列表<K>>
基础教程推荐
- 如何对 HashSet 进行排序? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01