Gson反解析带泛型的List

 // 将Json数组解析成相应的映射对象列表
    public static  List jsonToList(Class myClass, String jsonStr){
        List t = null;
        try {
            if (gson != null) {
                Type type = new ListParameterizedType(myClass);
                t = buildGson().fromJson(jsonStr, type);
            }
        } catch (Exception e) {
            // TODO: handle exception
            e.printStackTrace();
        }
        return t;
    }

你可能感兴趣的:(Gson反解析带泛型的List)