json解析-将json字符串转为List集合

背景:本地放置了一个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());

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值