What do you think is the best way to find a value in a map inside another map.
Map <String, String> map1 = new HashMap<>();
map1.put("map1|1", "1.1");
map1.put("map1|2", "1.2");
map1.put("map1|3", "1.3");
map1.put("map1|4", "1.4");
Map <String, String> map2 = new HashMap<>();
map2.put("map2|1", "2.1");
map2.put("map2|2", "2.2");
map2.put("map2|3", "2.3");
map2.put("map2|4", "2.4");
Map<String, Map> mapOfMaps = new HashMap<>();
mapOfMaps.put("MAP|map1", map1);
mapOfMaps.put("MAP|map2", map2);
Now if I need the value of "MAP|map2" (inside mapOfMaps) and "map2|3" (inside map2) will be "2.3"
I tried to do something like:
System.out.println("x="+getValue(mapOfMaps,"MAP|map2", "map2|4"));
public static String getValue (Map<String, Map> map,String mapfind, String val) {
Map<Object, Object> mp = map.entrySet().stream()
.filter(x -> x.getKey().equals(mapfind))
.collect(Collectors.toMap(p -> p.getKey(), p -> p.getValue()));
System.out.println("--------"+mp);
return (String) mp.get(val);
}
but the result is:
--------{MAP|map2={map2|1=2.1, map2|4=2.4, map2|2=2.2, map2|3=2.3}}
x=null
Can you help me with some ideas?