我有一个Map:
Map<Integer,Map<String,Integer>>
我需要将此映射展平为值列表:
Map<String,Integer> map1 = new HashMap<>();
Map<String,Integer> map2 = new HashMap<>();
map1.putIfAbsent("ABC",123);
map1.putIfAbsent("PQR",345);
map1.putIfAbsent("XYZ",567);
map2.putIfAbsent("ABC",234);
map2.putIfAbsent("FGH",789);
map2.putIfAbsent("BNM",890);
Map<Integer,Map<String,Integer>> mapMap = new HashMap();
mapMap.putIfAbsent(0,map1);
mapMap.putIfAbsent(1,map2);
预期输出: 123
345
567
234
789
890
我需要包括Java 8流在内的其他解决方案!
谢谢
答案 0 :(得分:2)
您可以使用以下方法收集所有数字值:
List<Integer> numbers = mapMap
.values() //all `Map` values
.stream()
.map(Map::values) //map each inner map to the collection of its value
.flatMap(Collection::stream) // flatten all inner value collections
.collect(Collectors.toList()); //collect all values into a single list
numbers
在上面的代码中包含[345, 123, 567, 890, 234, 789]
答案 1 :(得分:1)
尝试一下
List<Integer> result= new ArrayList<>();
mapMap.forEach((key, value) -> result.addAll(value.values()));