有人可以建议为什么会发生这种情况......
我有一些代码可以漂亮地打印一些 JSON。为此,我正在使用Gson 库。
然而,虽然这样通常效果很好,但某些字符似乎无法正确显示。这是一个演示问题的简单代码:
//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)"
}
}
我该如何解决上述问题?