gpt4 book ai didi

java - 使用来自现有列表的 HashMap 的值创建一个新列表

转载 作者:行者123 更新时间:2023-12-03 18:42:07 24 4
gpt4 key购买 nike

我想从现有列表的 map 创建一个新列表。

我得到了一个结构如下的 ArrayList;

ArrayList
0 = {LinkedHashMap}
0 = {LinkedHashMapEntry} "name" --> "value"
1 = {LinkedHashMapEntry} "surname" --> "value"
1 = {LinkedHashMap}
0 = {LinkedHashMapEntry} "name" --> "value"
1 = {LinkedHashMapEntry} "surname" --> "value"
....

我想要做的是将所有名称值作为一个新列表获取。

List<String> allNames = ....

有什么方法可以使用 Java Stream 获取此列表吗?

最佳答案

是的:

List<String> allNames =
list.stream() // this creates a Stream<LinkedHashMap<String,String>>
.map(m->m.get("name")) // this maps the original Stream to a Stream<String>
// where each Map of the original Stream in mapped to the
// value of the "name" key in that Map
.filter(Objects::nonNull) // this filters out any null values
.collect(Collectors.toList()); // this collects the elements
// of the Stream to a List

关于java - 使用来自现有列表的 HashMap 的值创建一个新列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48680512/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com