fastjson 怎么去处理unicode这类的字符

im9ewurl  于 2021-11-27  发布在  Java
关注(0)|答案(4)|浏览(213)

用的是fastjson 1.2.11
System.out.println(JSON.toJSONString("\u4E2D\u56FD", SerializerFeature.BrowserCompatible));
"\u4E2D\u56FD"

vlf7wbxs

vlf7wbxs1#

这个不对么?你期望的结果是啥?

sulc1iza

sulc1iza2#

我这边显示的还是unicode ,不是中国 后来换了另外一个就好啦!谢谢啦哈

发送自我的HTC Phone

----- 回复信息 -----
发件人: "高铁" notifications@github.com
收件人: "alibaba/fastjson" fastjson@noreply.github.com
抄送: "masterchengsheng" chengshengsyxy@live.cn, "Author" author@noreply.github.com
主题: [alibaba/fastjson] 怎么去处理unicode这类的字符 (#624)
日期: 周三, 5月 11 日, 2016 年 22:15

这个不对么?你期望的结果是啥?

You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:

624 (comment)

dgiusagp

dgiusagp3#

怎么换?没明白你的意思

h5qlskok

h5qlskok4#

JSONArray.toJSONString(),没有这个重载方法 ,我的json是[{"name":"\uxx"}],结果给我转成 [{"name":"\\uxxx"}],我不想这样转,给你什么格式,就返回什么格式

相关问题