标签: java json gson
我正在尝试将具有一个变量值的Java对象转换为xml的字符串。
Eg: <soapenvelope... >
使用后
String json = new Gson().toJson(testVO)
取代&#34;&lt;&#34;与\ u003c。我想避免这种情况,因为我将在jquery数据表中显示数据,这些数据无法识别xml的字符串并打印一些随机值。
答案 0 :(得分:-1)
您需要停用http://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/GsonBuilder.html#disableHtmlEscaping%28%29
Can you avoid Gson converting "<" and ">" into unicode escape sequences?