码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2016-04-09 20:24:40      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

list集合转换JSON出错误

意思是:对象是一个数组。

使用jsonarray取代。

解决方法:

将JSONObject替换为JSONArray

代码:

JsonConfig jsonConfig = new JsonConfig();

jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);

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

result = json.toString();


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

标签:

原文地址:http://www.cnblogs.com/gcczhongduan/p/5372420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!