我用GSON功能toJson
为=
, >
和<
运营商,以及在最后的字符串它们被解释为\u003e
。
是否有一个特殊的功能,我需要添加或照顾?
我用GSON功能toJson
为=
, >
和<
运营商,以及在最后的字符串它们被解释为\u003e
。
是否有一个特殊的功能,我需要添加或照顾?
你应该禁用HTML转义 ,这里是说明它的样本:
Gson gson1 = new Gson();
String s1 = gson1.toJson("<>");
Gson gson2 = new GsonBuilder().disableHtmlEscaping().create();
String s2 = gson2.toJson("<>");
S1: “\ u003c \ u003e”
S2: “<>”