你能避免 Gson 转换“<”吗?和“>”转换成 unicode 转义序列?
我注意到 Gson 转换字符串“<”转换为 JSON 输出中的 unicode 转义序列。你能以某种方式避免这种情况,或者做像“<”这样的字符吗?和“>”总是必须在 JSON 中转义?
考虑这个打印 {"s":"\u003c"}
; 的示例我想要的只是 {"s":"<"}
。
public static void main(String[] args) {
Gson gson = new GsonBuilder().create();
System.out.println(gson.toJson(new Foo()));
}
static class Foo {
String s = "<";
}
上下文:我正在创建的 JSON 片段与 HTML 页面甚至 JavaScript 无关;它只是用于将某些结构化信息传递给另一个软件(嵌入设备中,用 C 语言编写)。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用Retrofit和GsonConverterFactory,那么解决方案可能有点难看。我不认为这是最好的解决方案,但这是我唯一想到的并且对我有用。
因此,您需要创建自己的
GsonConverterFactory
,在其中通过禁用 HTML 转义来修改Gson
创建。为了创建自定义的 GsonConverterFactory,您还需要创建 GsonRequestBodyConverter 和 GsonResponseBodyConverter,因为这些类在原始库中是私有的。
您可以通过以下方式完成:
因此,此代码片段与原始类的代码基本相同,但转换为 Kotlin。这里唯一有效的改变是:
fun create(gson: Gson? = Gson().newBuilder().disableHtmlEscaping().create())
您可以像使用默认的
GsonConverterFactory
一样使用此类>:If you use
Retrofit
andGsonConverterFactory
, then the solution might be a bit ugly. I don't think it's the best solution, but it's the only I came to and it works for me.So you need to create your own
GsonConverterFactory
in which you modify theGson
creation by disabling the HTML escaping.In order to create your custom
GsonConverterFactory
you will need to createGsonRequestBodyConverter
andGsonResponseBodyConverter
too, because these classes are private in the original library.You can do it in the following way:
So, this code snippet is basically the same code that the original classes have, but converted to Kotlin. The only change here, which does the trick, is this:
fun create(gson: Gson? = Gson().newBuilder().disableHtmlEscaping().create())
You can use this class in the same way as the default
GsonConverterFactory
:您需要 禁用 HTML 转义。
You need to disable HTML escaping.
Ampasand 符号被替换为 \u0026 ,通过使用它它得到了解决。
the Ampasand symbol was replacing with \u0026 , by using this it got resolved.