如何要求 Jackson 在文本中反序列化 html 转义字符?尝试了所有配置但没有成功
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能:你拥有的不是有效的 JSON,必须使用反斜杠 ('\') 字符转义双引号字符。
You can't: what you have is not valid JSON, one MUST escape double-quote characters with backslash ('\') character.