如何使用 Stream 从 java Map 创建多个列表?

我是 Java 8 Stream API 的新手。我想知道是否可以根据地图中的键值创建多个列表?例如。如果我的地图是

{"Developer", Developer; "Manager", Manager; "Lead", Lead; "Director", Director}

我想根据关键值从地图创建开发人员列表、经理列表、领导列表和总监列表。如有任何帮助,我们将不胜感激。


芜湖不芜
浏览 99回答 3
3回答

杨魅力

使用Collectors.groupingBy,您可以生成从键到值列表的映射,前提是您可以根据值计算键。或者,您可以使用Collectors.toMap,前提是您可以从上游元素计算 Key 和 Value。您可能需要带有合并功能的 toMap 版本,因为这将允许您处理具有相同值的多个键(通过将它们放在一个列表中)。编辑:如果您想要排序,则toMap和groupingBy的重载允许您提供 mapFactory ( ) ,例如。Supplier<Map>TreeMap::new

MMMHUHU

请使用 Collectors.groupBy() 查找以下代码:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; List<Details> employeeList = Arrays.asList(new Details("Pratik", "Developer"), new Details("Rohit", "Manager"), new Details("Sonal", "Developer"), new Details("Sagar", "Lead"), new Details("Sanket", "Lead"));&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Map<String, List<Details>> collect = employeeList.stream().collect(Collectors.groupingBy(x-> x.getDesignation()));&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println("Checking details "+ collect);

慕尼黑8549860

要反转映射,使其不同的值成为键,并将其键添加到相应值下的集合中,请groupingBy()在映射条目上使用。原始映射中的值必须正确实现equals()并hashCode()用作新哈希表中的键,这一点很重要。static <K, V> Map<V, Set<K>> invert(Map<? extends K, ? extends V> original) {&nbsp; return original.entrySet().stream()&nbsp; &nbsp; .collect(Collectors.groupingBy(&nbsp; &nbsp; &nbsp; Map.Entry::getValue,&nbsp;&nbsp; &nbsp; &nbsp; Collectors.mapping(Map.Entry::getKey, Collectors.toSet())&nbsp; &nbsp; ));}如果你想对组进行排序,你可以创建一个专门的“下游”收集器:static <K, V> Map<V, SortedSet<K>> invert(&nbsp; &nbsp; Map<? extends K, ? extends V> original,&nbsp;&nbsp; &nbsp; Comparator<? super K> order) {&nbsp; Collector<K, ?, SortedSet<K>> toSortedSet =&nbsp;&nbsp; &nbsp; &nbsp;Collectors.toCollection(() -> new TreeSet<>(order));&nbsp; return original.entrySet().stream()&nbsp; &nbsp; .collect(Collectors.groupingBy(&nbsp; &nbsp; &nbsp; Map.Entry::getValue,&nbsp;&nbsp; &nbsp; &nbsp; Collectors.mapping(Map.Entry::getKey, toSortedSet)&nbsp; &nbsp; ));}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java