把List<Map<String,Integer>>中的数据合成一个map中
时间: 2023-11-11 22:43:37 浏览: 85
可以使用循环遍历的方法将List<Map<String, Integer>>中的数据合成一个Map对象。以下是一个示例代码:
```java
List<Map<String, Integer>> list = new ArrayList<>();
// 假设list中有三个Map对象
Map<String, Integer> map1 = new HashMap<>();
map1.put("key1", 1);
map1.put("key2", 2);
Map<String, Integer> map2 = new HashMap<>();
map2.put("key3", 3);
map2.put("key4", 4);
Map<String, Integer> map3 = new HashMap<>();
map3.put("key5", 5);
map3.put("key6", 6);
list.add(map1);
list.add(map2);
list.add(map3);
// 合并数据的Map对象
Map<String, Integer> mergedMap = new HashMap<>();
// 遍历List中的每个Map对象,将其键值对放入mergedMap中
for (Map<String, Integer> map : list) {
mergedMap.putAll(map);
}
System.out.println(mergedMap);
```
输出结果为:
```
{key1=1, key2=2, key3=3, key4=4, key5=5, key6=6}
```
通过循环遍历List中的每个Map对象,使用`putAll()`方法将其键值对放入一个新的Map对象中,最终得到合并后的Map对象。
阅读全文