通常需要为以下查询转换结果:
select category, count(*)
from table
group by category
到地图,其中键是类别,值是属于同一类别的记录数。
许多持久性框架返回List<Object[]>
这样的查询结果,其中对象数组包含两个元素(类别和每个返回结果集行的计数)。
我正在尝试找到将此列表转换为相应地图的最可读方式。
当然,传统方法涉及创建地图并手动输入条目:
Map<String, Integer> map = new HashMap<>();
list.stream().forEach(e -> map.put((String) e[0], (Integer) e[1]));
我想到的第一个单线程是利用开箱即用的Collectors.toMap
收藏家:
Map<String, Integer> map = list.stream().collect(toMap(e -> (String) e[0], e -> (Integer) e[1]));
但是,我发现这种e -> (T) e[i]
语法比传统方法的可读性差一点。为了克服这个问题,我可以创建一个可以在所有这些情况下重用的util方法:
public static <K, V> Collector<Object[], ?, Map<K, V>> toMap() {
return Collectors.toMap(e -> (K) e[0], e -> (V) e[1]);
}
然后我有一个完美的单行:
Map<String, Integer> map = list.stream().collect(Utils.toMap());
由于类型推断,甚至不需要转换键和值。但是,对于代码的其他读者(在util方法签名中Collector<Object[], ?, Map<K, V>>
等)来说,这有点难以理解。
我想知道,java 8工具箱中还有什么可以帮助以更可读/更优雅的方式实现这一目标吗?
答案 0 :(得分:14)
我认为你现在的'单线'很好。但如果您不特别喜欢命令中内置的魔术索引,那么您可以封装在枚举中:
enum Column {
CATEGORY(0),
COUNT(1);
private final int index;
Column(int index) {
this.index = index;
}
public int getIntValue(Object[] row) {
return (int)row[index]);
}
public String getStringValue(Object[] row) {
return (String)row[index];
}
}
然后你的提取代码变得更清晰了:
list.stream().collect(Collectors.toMap(CATEGORY::getStringValue, COUNT::getIntValue));
理想情况下,您需要在列中添加一个类型字段,并检查是否调用了正确的方法。
虽然在你的问题范围之外,理想情况下你会创建一个表示封装查询的行的类。类似下面的内容(为了清晰起见,跳过了吸气剂):
class CategoryCount {
private static final String QUERY = "
select category, count(*)
from table
group by category";
private final String category;
private final int count;
public static Stream<CategoryCount> getAllCategoryCounts() {
list<Object[]> results = runQuery(QUERY);
return Arrays.stream(results).map(CategoryCount::new);
}
private CategoryCount(Object[] row) {
category = (String)row[0];
count = (int)row[1];
}
}
将查询和行解码之间的依赖关系放在同一个类中,并隐藏用户的所有不必要的细节。
然后创建地图:
Map<String,Integer> categoryCountMap = CategoryCount.getAllCategoryCounts()
.collect(Collectors.toMap(CategoryCount::getCategory, CategoryCount::getCount));
答案 1 :(得分:2)
我没有隐藏类强制转换,而是提供了几个函数来帮助提高可读性:
Map<String, Integer> map = results.stream()
.collect(toMap(
columnToObject(0, String.class),
columnToObject(1, Integer.class)
));
完整示例:
package com.bluecatcode.learning.so;
import com.google.common.collect.ImmutableList;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import static java.lang.String.format;
import static java.util.stream.Collectors.toMap;
public class Q35689206 {
public static void main(String[] args) {
List<Object[]> results = ImmutableList.of(
new Object[]{"test", 1}
);
Map<String, Integer> map = results.stream()
.collect(toMap(
columnToObject(0, String.class),
columnToObject(1, Integer.class)
));
System.out.println("map = " + map);
}
private static <T> Function<Object[], T> columnToObject(int index, Class<T> type) {
return e -> asInstanceOf(type, e[index]);
}
private static <T> T asInstanceOf(Class<T> type, Object object) throws ClassCastException {
if (type.isAssignableFrom(type)) {
return type.cast(object);
}
throw new ClassCastException(format("Cannot cast object of type '%s' to '%s'",
object.getClass().getCanonicalName(), type.getCanonicalName()));
}
}