码迷,mamicode.com
首页 > 其他好文 > 详细

关于Gson解析时候特殊符号,被转义的问题,如 单引号

时间:2019-02-04 10:26:51      阅读:479      评论:0      收藏:0      [点我收藏+]

标签:单引号   json   one   net   tin   The   article   解决   log   

//Creating the JSON object, and getting as String:
JsonObject json = new JsonObject();
JsonObject inner = new JsonObject();
inner.addProperty("value", "xpath(‘hello‘)");
json.add("root", inner);
System.out.println(json.toString());

//Trying to pretify JSON String:
Gson gson = new GsonBuilder().setPrettyPrinting().create();
JsonParser parser = new JsonParser();
JsonElement je = parser.parse(json.toString());
System.out.println(gson.toJson(je));

输出

{"root":{"value":"xpath(‘hello‘)"}}
{
  "root": {
    "value": "xpath(\u0027hello\u0027)"
  }
}


解决办法

Gson gs = new GsonBuilder()
    .setPrettyPrinting()
    .disableHtmlEscaping()
    .create();

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

关于Gson解析时候特殊符号,被转义的问题,如 单引号

标签:单引号   json   one   net   tin   The   article   解决   log   

原文地址:https://www.cnblogs.com/skinchqqhah/p/10351467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!