Stream groupingBy: reducing to first element of list(Stream groupingBy:减少到列表的第一个元素)
问题描述
我有一个 List<Valuta>
可以表示(简化)JSON 样式:
I have a List<Valuta>
which can be represented (simplified) JSON-style:
[ { 代码=欧元,描述=欧元,比率=1 },{ 代码=美元,描述=美元,比率=1.1 } ]
[ { codice=EUR, description=Euro, ratio=1 }, { codice=USD, description=Dollars, ratio=1.1 } ]
我想像这样在 Map<String, Valuta>
中转换它:
I want to transform that in a Map<String, Valuta>
like this:
{ EUR={ codice=EUR, description=Euro, ratio=1 }, USD={ codice=USD,描述=美元,比率=1.1 }}
{ EUR={ codice=EUR, description=Euro, ratio=1 }, USD={ codice=USD, description=Dollars, ratio=1.1 }}
我写了这个单行:
getValute().stream().collect(Collectors.groupingBy(Valuta::getCodice));
但这会返回一个 Map<String, List
but this returns a Map<String, List<Valuta>>
instead of what I need.
我想 mapping()
函数对我有用,但不知道如何.
I suppose mapping()
function would work for me, but don't know how.
推荐答案
其实这里需要使用Collectors.toMap
,而不是Collectors.groupingBy
:
Actually, you need to use Collectors.toMap
here instead of Collectors.groupingBy
:
Map<String, Valuta> map =
getValute().stream()
.collect(Collectors.toMap(Valuta::getCodice, Function.identity()));
groupingBy
用于根据分组函数对 Stream 的元素进行分组.2 与分组功能结果相同的Stream元素,默认会被收集到一个List
中.
toMap
会将元素收集到 Map
中,其中键是应用给定键映射器的结果,并且该值是应用值映射器的结果.注意toMap
,默认情况下,如果遇到重复,会抛出异常.
toMap
will collect the elements into a Map
where the key is the result of applying a given key mapper and the value is the result of applying a value mapper. Note that toMap
, by default, will throw an exception if a duplicate is encountered.
这篇关于Stream groupingBy:减少到列表的第一个元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Stream groupingBy:减少到列表的第一个元素
基础教程推荐
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 降序排序:Java Map 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01