报错原因是把List<Map<String,Object>>直接转json,其中格式不对就报错了。
List<Map<String,Object>> listinfo=repository.getxxxx(xx,xx,xx);
当for中使用:JSONObject obj=JSONObject.toJSON(listinfo.get(i)); 时报 expect ':' 0
解决方法:
标签:fastjson,JSONException,xx,报错,expect,解决 From: https://www.cnblogs.com/liuguiqing/p/17131586.html