java8 stream.map 忽略空值
时间: 2023-11-17 09:57:33 浏览: 529
Java 8中的Stream API提供了一种简单的方法来处理集合中的元素。如果你想忽略Map中的空值,可以使用filter()方法来过滤掉空值。例如,你可以使用以下代码来过滤掉Map中的空值:
Map<String, String> map = new HashMap<>();
map.put("y", "abc");
map.put("z", "abv");
map.put("zz", null);
map.put("yy", "");
Map<String, String> filteredMap = map.entrySet()
.stream()
.filter(entry -> entry.getValue() != null && !entry.getValue().isEmpty())
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
在上面的代码中,我们使用了filter()方法来过滤掉Map中的空值。我们首先使用entrySet()方法获取Map中的所有键值对,然后使用stream()方法将其转换为Stream对象。接着,我们使用filter()方法来过滤掉值为null或空字符串的键值对。最后,我们使用collect()方法将过滤后的键值对收集到一个新的Map中。
阅读全文