背景:本地放置了一个json文件,读取改文件为json字符串数据,然后将字符串转为List集合。
转为List集合时报错:
source[0] of type com.google.gson.internal.LinkedTreeMap cannot be stored in destination array of type
代码如下:
//从本地json读取城市数据到数据库
String cityJsonString = AppUtils.getStringFromRawFile(getApplicationContext(), R.raw.city);
if (TextUtils.isEmpty(cityJsonString)) {
return;
}
List<WeatherCity> cityList = GsonUtil.fromJsonToList(cityJsonString);
public static <T> List<T> fromJsonToList(String json) {
try {
Type type = new TypeToken<List<T>>(){}.getType();
if (TextUtils.isEmpty(json) || type == null) return null;
return sGson.fromJson(json, type);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
而如果直接把泛型T指定为具体的类,就可以正常转化为List。
解决办法就是:在使用泛型过程中,必须要具体到某一个类,不用使用泛型代替。
public static <T> List<T> fromJsonToList(String json, Type type) {
if (TextUtils.isEmpty(json) || type == null) return null;
return sGson.fromJson(json, type);
}
调用:
List<WeatherCity> cityList = GsonUtil.fromJsonToList(cityJsonString,new TypeToken<List<WeatherCity>>(){}.getType());