net.sf.json.JSONException: 'object' is an array. Use JSONArray instead

前端之家收集整理的这篇文章主要介绍了net.sf.json.JSONException: 'object' is an array. Use JSONArray instead前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

list集合转换JSON出错误

意思是:对象”是一个数组。使用jsonarray代替。

解决方法

将JSONObject替换为JSONArray

代码

JsonConfig jsonConfig =newJsonConfig();

jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);

JSONArray json = JSONArray.fromObject(newList,jsonConfig);

result = json.toString();

//或

newList);

result = json.toString();

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

猜你在找的Json相关文章