用stream流遍历List<hashMap<String,String>>
时间: 2023-06-01 07:03:36 浏览: 157
Java中的小知识—–Stream流
可以使用Java 8中的Stream API来遍历List<HashMap<String, String>>,如下所示:
```
List<HashMap<String, String>> list = new ArrayList<>();
// 添加元素到list中
list.stream().forEach(map -> {
map.forEach((key, value) -> {
System.out.println(key + " : " + value);
});
});
```
上述代码中,我们首先创建了一个List<HashMap<String, String>>,并将元素添加到其中。接着,我们使用stream()方法将List转换为Stream对象,并使用forEach()方法遍历每个元素。在forEach()方法中,我们将每个HashMap中的键值对遍历,并打印出来。
阅读全文