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

时间:2014-04-29 13:43:21   收藏:0   阅读:1280

list集合转换JSON出错误

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

解决方法:

将JSONObject替换为JSONArray

代码:

JsonConfig jsonConfig = new JsonConfig();

jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);

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

result = json.toString();


评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!