JSONArray 转list

前端之家收集整理的这篇文章主要介绍了JSONArray 转list前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

JSONArray 转list 可以通过如下简便方法进行

JSONArray programsArray = jsonobject.getJSONArray("programs");

List<Programs> list = (List) JSONArray.toCollection(programsArray,Programs.class);

转换过程中容易产生NoSuchMethodException 异常, 产生异常的原因是 对象Programs 缺少无参构造方法

添加上即可

public Programs(){


}



net.sf.json.JSONException: java.lang.NoSuchMethodException: com.cnlive.mz.ips.model.Programs.<init>()

原文链接:https://www.f2er.com/json/289561.html

猜你在找的Json相关文章