68

让我们考虑一个哈希图

Map<Integer, List> id1 = new HashMap<Integer,List>();

我在两个哈希图中都插入了一些值。

例如,

List<String> list1 = new ArrayList<String>();

list1.add("r1");
list1.add("r4");

List<String> list2 = new ArrayList<String>();
list2.add("r2");
list2.add("r5");

List<String> list3 = new ArrayList<String>();
list3.add("r3");
list3.add("r6");

id1.put(1,list1);
id1.put(2,list2);
id1.put(3,list3);
id1.put(10,list2);
id1.put(15,list3);

Q1)现在我想对 hashmap 中的键应用过滤条件并检索相应的值(列表)。

例如:这里我的查询是key=1,输出应该是'list1'

我写

id1.entrySet().stream().filter( e -> e.getKey() == 1);
            

但我不知道如何将列表检索为此流操作的输出。

Q2)我想再次对 hashmap 中的键应用过滤条件并检索相应的列表列表。

例如:这里我的查询是key=1%(即key可以是1,10,15),输出应该是'list1','list2','list3'(列表列表)。

4

7 回答 7

91

如果您确定最多只能获得一个通过过滤器的元素(由您的过滤器保证),您可以使用findFirst

Optional<List> o = id1.entrySet()
                      .stream()
                      .filter( e -> e.getKey() == 1)
                      .map(Map.Entry::getValue)
                      .findFirst();

在一般情况下,如果过滤器可能匹配多个列表,您可以将它们收集到 List of Lists :

List<List> list = id1.entrySet()
                     .stream()
                     .filter(.. some predicate...)
                     .map(Map.Entry::getValue)
                     .collect(Collectors.toList());
于 2015-04-14T10:58:21.357 回答
40

您需要做的是StreamMap's中创建一个.entrySet()

// Map<K, V> --> Set<Map.Entry<K, V>> --> Stream<Map.Entry<K, V>>
map.entrySet().stream()

从那以后,您可以.filter()覆盖这些条目。例如:

// Stream<Map.Entry<K, V>> --> Stream<Map.Entry<K, V>>
.filter(entry -> entry.getKey() == 1)

并从中获取值.map()

// Stream<Map.Entry<K, V>> --> Stream<V>
.map(Map.Entry::getValue)

最后,您需要收集到一个List

// Stream<V> --> List<V>
.collect(Collectors.toList())

如果您只有一个条目,请改用它(注意:此代码假定存在一个值;否则,请使用.orElse();有关更多详细信息,请参阅javadocOptional):

// Stream<V> --> Optional<V> --> V
.findFirst().get()
于 2015-04-14T10:59:36.247 回答
4

对于您的 Q2,您的问题已经有了答案。对于您的 Q1,更一般地说,当您知道键的过滤应该给出唯一值时,根本不需要使用 Streams。

只需使用getor getOrDefault,即:

List<String> list1 = id1.getOrDefault(1, Collections.emptyList());
于 2015-04-14T11:21:08.707 回答
2

你也可以这样做

public Map<Boolean, List<Student>> getpartitionMap(List<Student> studentsList) {

    List<Predicate<Student>> allPredicates = getAllPredicates();
    Predicate<Student> compositePredicate =  allPredicates.stream()
                             .reduce(w -> true, Predicate::and)
     Map<Boolean, List<Student>> studentsMap= studentsList
                .stream()
                .collect(Collectors.partitioningBy(compositePredicate));
    return studentsMap;
}

public List<Student> getValidStudentsList(Map<Boolean, List<Student>> studentsMap) throws Exception {

    List<Student> validStudentsList =  studentsMap.entrySet()
             .stream()
             .filter(p -> p.getKey() == Boolean.TRUE)
             .flatMap(p -> p.getValue().stream())
             .collect(Collectors.toList());

    return validStudentsList;
}

public List<Student> getInValidStudentsList(Map<Boolean, List<Student>> studentsMap) throws Exception {

    List<Student> invalidStudentsList = 
             partionedByPredicate.entrySet()
             .stream()
             .filter(p -> p.getKey() == Boolean.FALSE)
             .flatMap(p -> p.getValue().stream())
             .collect(Collectors.toList());

    return invalidStudentsList;

}

flatMap你将得到只是List<Student>而不是List<List<Student>>

谢谢

于 2015-06-10T11:28:44.793 回答
2

Using keySet-

id1.keySet().stream()
        .filter(x -> x == 1)
        .map(x -> id1.get(x))
        .collect(Collectors.toList())
于 2019-10-28T13:02:00.067 回答
0

为什么这一切!

列表 list1 = id1.get(1);

于 2022-02-21T12:07:00.630 回答
0

也许示例过于简单,但您不需要此处的 Java 流 API。直接使用地图即可。

 List<String> list1 = id1.get(1); // this will return the list from your map
于 2021-01-19T19:02:47.940 回答