GSON未能CONVER符号(Gson failure to conver symbols)

2019-09-27 01:06发布

我用GSON功能toJson=><运营商,以及在最后的字符串它们被解释为\u003e

是否有一个特殊的功能,我需要添加或照顾?

Answer 1:

你应该禁用HTML转义 ,这里是说明它的样本:

Gson gson1 = new Gson();

String s1 = gson1.toJson("<>");

Gson gson2 = new GsonBuilder().disableHtmlEscaping().create();

String s2 = gson2.toJson("<>");

S1: “\ u003c \ u003e”

S2: “<>”



文章来源: Gson failure to conver symbols
标签: json gson