使用场景
使用的时候IDEA会提示警告 说未检查类型.
解决办法
使用@SuperWarning({“unchecked”})进行压制
写个工具类进行转换
写的时候参考了我的 Object 转换 List的写法,只是说在处理o的时候再次进行了转换获得每个key和value.
写完Object转换List后大概想了1个多小时才想到这个方式, 真的佩服自己的愚蠢
public static List> objConvertListMap(Object obj) throws IllegalAccessException {
List> result = new ArrayList<>();
if (obj instanceof List<?>){
for (Object o : (List<?>) obj) {
Map map = new HashMap<>(16);
Class<?> clazz = o.getClass();
for (Field field : clazz.getDeclaredFields()) {
field.setAccessible(true);
String key = field.getName();
Object value = field.get(key);
if (value == null){
value = "";
}
map.put(key,value);
}
result.add(map);
}
return result;
}
return null;
}
public static <V> List<Map<String,V>> objConvertListMap(Object obj, Class<V> vClass) throws IllegalAccessException {
List<Map<String, V>> result = new ArrayList<>();
if (obj instanceof List<?>) {
for (Object o : (List<?>) obj) {
Map<String, V> map = new HashMap<>(16);
Class<?> oClass = o.getClass();
for (Field field : oClass.getDeclaredFields()) {
field.setAccessible(true);
String key = field.getName();
Object value = field.get(key);
if (value == null) {
value = "";
}
map.put(key, vClass.cast(value));
}
result.add(map);
}
return result;
}
return null;
}
这样就不会局限在转换到List>这一种类型上了.
可以转换成List>上等,进行泛型转换
虽然多了一个参数,但是可以重载啊
感觉field.get(key) 这里处理的不是很好,如果有更好的办法可以留言
public static List> castListMap(Object obj, Class kCalzz, Class vCalzz) {
List> result = new ArrayList<>();
if (obj instanceof List<?>) {
for (Object mapObj : (List<?>) obj) {
if (mapObj instanceof Map<?, ?>) {
Map map = new HashMap<>(16);
for (Map.Entry<?, ?> entry : ((Map<?, ?>) mapObj).entrySet()) {
map.put(kCalzz.cast(entry.getKey()), vCalzz.cast(entry.getValue()));
}
result.add(map);
}
}
return result;
}
return null;
}