如何要求 Jackson 在文本中反序列化 html 转义字符?尝试了所有配置但没有成功

发布于 2024-12-25 23:30:12 字数 346 浏览 2 评论 0原文

Jackson Deserializer问题 ::

如何解析html转义字符?

例如::我需要反序列化json字符串。

{ "deployvirtualmachineresponse" : {"errorcode" : 431, "errortext" : "you "-" and me"}  }

Please @See "errortext" : "you "-" and me" above.

Need:: errortext 必须用“-”来解析。

如何告诉杰克逊在解析时将 ["you "-" and me"] 视为一个字符串,因为它在“-”上失败?

Jackson Deserializer issue ::

How to parse html escapse charecters?

For example :: I need to deserialze json string.

{ "deployvirtualmachineresponse" : {"errorcode" : 431, "errortext" : "you "-" and me"}  }

Please @See "errortext" : "you "-" and me" above.

Need:: errortext must be parsed with "-".

How to tell jackson to treat ["you "-" and me"] as one string while parsing as it fails on "-"??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘紸啶 2025-01-01 23:30:12

你不能:你拥有的不是有效的 JSON,必须使用反斜杠 ('\') 字符转义双引号字符。

You can't: what you have is not valid JSON, one MUST escape double-quote characters with backslash ('\') character.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文