AttributeValue java 流上的 summingDouble
summingDouble on AttributeValue java streams
我有一个字符串映射列表,AttributeValue 并想使用 summingDouble
对键进行分组并分别找到每个键的总和。
例如,
List<Map<String, AttributeValue>> ls = new ArrayList<Map<String, AttributeValue>>();
Map<String,AttributeValue> map = new HashMap<String,AttributeValue>();
map.put("key1", new AttributeValue().withN("1000"));
map.put("key2", new AttributeValue().withN("1000"));
ls.add(map);
Map<String,AttributeValue> map1 = new HashMap<String,AttributeValue>();
map1.put("key3", new AttributeValue().withN("1000"));
map1.put("key1", new AttributeValue().withN("2000"));
ls.add(map1);
这应该return
result = {key1: 3000, key2: 1000, key3: 1000}
其中 key1 是 key1 的值的总和。
尝试如下,但本例中的 getValue 是一个 AttributeValue,因此它不起作用。
Map<String, Double> result = ls.stream().flatMap(m -> m.entrySet().stream()).collect(groupingBy(Map.Entry::getKey, summingDouble(Map.Entry::getValue)));
看来你的groupingBy应该是这样的:
groupingBy(
Map.Entry::getKey,
summingDouble(e -> Double.valueOf(e.getValue().getN())))
我有一个字符串映射列表,AttributeValue 并想使用 summingDouble
对键进行分组并分别找到每个键的总和。
例如,
List<Map<String, AttributeValue>> ls = new ArrayList<Map<String, AttributeValue>>();
Map<String,AttributeValue> map = new HashMap<String,AttributeValue>();
map.put("key1", new AttributeValue().withN("1000"));
map.put("key2", new AttributeValue().withN("1000"));
ls.add(map);
Map<String,AttributeValue> map1 = new HashMap<String,AttributeValue>();
map1.put("key3", new AttributeValue().withN("1000"));
map1.put("key1", new AttributeValue().withN("2000"));
ls.add(map1);
这应该return
result = {key1: 3000, key2: 1000, key3: 1000}
其中 key1 是 key1 的值的总和。
尝试如下,但本例中的 getValue 是一个 AttributeValue,因此它不起作用。
Map<String, Double> result = ls.stream().flatMap(m -> m.entrySet().stream()).collect(groupingBy(Map.Entry::getKey, summingDouble(Map.Entry::getValue)));
看来你的groupingBy应该是这样的:
groupingBy(
Map.Entry::getKey,
summingDouble(e -> Double.valueOf(e.getValue().getN())))