fastjson 如何去掉反斜杠
fastjson
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
项目地址:https://gitcode.com/gh_mirrors/fastj/fastjson
免费下载资源
·
FastJson是阿里的开源框架,被不少企业使用,是一个极其优秀的Json框架。
调用接口时候用的是FastJson,出现多余的反斜杠,情况如下
{"data":"{\"message\":\"\",\"result\":0,\"data\":{\"id\":16,\"name\":\"\",\"sex\":\"\",\"age\":0}}
原因是json解析问题
接收到的json定义为student对象
String jsonString = JSONObject.toJSONString(student);
JSONObject jsonObject = JSONObject.parseObject(jsonString);
最后json未解析,直接返回到上一级就好使了
反转义方式:
StringEscapeUtils.unescapeJavaScript(String str);
使用的是Apache 的 common.lang工具包,工具类为:org.apache.commons.lang.StringEscapeUtils。
GitHub 加速计划 / fastj / fastjson
3
1
下载
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
最近提交(Master分支:4 个月前 )
c942c834 - 1 年前
5bc4709b - 1 年前
更多推荐
已为社区贡献4条内容
所有评论(0)