java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be

原因json转list的时候类型没写正确 

简单来说就是在类中带有泛型时,gson无法识别其中的泛型而转成了LinkenTreeMap的类型。

Type listType = new TypeToken>() {}.getType();
        List list=JsonUtil.fromJson(jsonStr, listType);
        for(int i=0;i

 

你可能感兴趣的:(java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be)