您认为在另一张地图中的一张地图中找到值的最佳方法。
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);
现在,如果我需要“ MAP | map2”(在mapOfMaps内部)和“ map2 | 3”(在map2内部)的值为“ 2.3”
我试图做类似的事情:
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);
}
但结果是:
--------{MAP|map2={map2|1=2.1, map2|4=2.4, map2|2=2.2, map2|3=2.3}}
x=null
您能帮我一些想法吗?
答案 0 :(得分:3)
与其将raw type声明为mapOfMaps
,而应将其定义为
Map<String, Map<String, String>> mapOfMaps = new HashMap<>();
相应的getValue
方法如下所示:
public static String getValue(Map<String, Map<String, String>> mapOfMaps, String mapfind, String val) {
Map<String, String> innerMap = mapOfMaps.get(mapfind);
return innerMap != null ?
innerMap.get(val) :
null;
}
使用Optional
可以将其编写如下:
public static String getValue(Map<String, Map<String, String>> mapOfMaps, String mapfind, String val) {
return Optional.ofNullable(mapOfMaps.get(mapfind))
.map(m -> m.get(val))
.orElse(null);
}
如果我们保留mapOfMaps
的原始类型声明,我们将在getValue
的第一个版本中得到有关unchecked conversion的类型安全警告,而在第二个版本中,我们需要显式转换结果到String
。由于我们仅使用mapOfMaps
来将String
键映射到String
值,因此我们应该相应地声明它。
答案 1 :(得分:0)
我认为获得所需输出的最简单方法是使用map.get(mapfind).get(val)
。但是,如果您想使用现有代码实现此目标,则可以对收集的values()
调用map
并调用filter获得第二级过滤器。下面是修改后的方法的代码段
public static String getValue(Map<String, Map> map, String mapfind, String val) {
Map mp = map.entrySet().stream().filter(x -> x.getKey().equals(mapfind))
.collect(Collectors.toMap(p -> p.getKey(), p -> p.getValue()))
.values().stream().filter(y -> y.containsKey(val)).findAny().orElse(null);
System.out.println("--------" + mp);
if (mp == null)
return "";
return (String) mp.get(val);
}
答案 2 :(得分:-1)
public static String getValue (Map<String, Map> map,String mapfind, String val) {
Map childMap = map.get(mapfind);
if (childMap == null) {
return null;
}
return childMap.containsKey(val) ? childMap.get(val).toString() : null;
}