【解决方案】Resolved [com.alibaba.fastjson.JSONException: exepct '[', but string, pos

☆樱花仙子☆ 提交于 2020-02-26 15:17:50

使用fastjson,将字符串转数组时抛异常:

Resolved [com.alibaba.fastjson.JSONException: exepct '[', but string, pos

如下图中所示,result.getData()是一个字符串,我希望将它转为一个数组

 

 我的做法是:

String res = JSON.toJSONString(result.getData());
List<TFDepartment> departmentList = JSONArray.parseArray(res, TFDepartment.class);

所以抛异常了:Resolved [com.alibaba.fastjson.JSONException: exepct '[', but string, pos

解决方案如下:

String res = JSON.toJSON(result.getData()).toString();
List<TFDepartment> departmentList = JSONArray.parseArray(res, TFDepartment.class);

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!