JAX-RS编码
我正在使用 JAX-RS 创建一个以 JSON 格式返回结果的 Web(休息)服务。
除了编码之外一切都很好。
例如,我得到:
..., parameter:"Dep\u00f3sitos" ,...
而不是:
..., parameter:"Depósitos" ,...
我尝试使用:
@Produces("application/json; charset=UTF-8")
但问题仍然存在。如果我仅使用以下内容将其作为 XML 返回:
@Produces("application/xml")
一切正常。
我需要设置什么才能生成正确的类型?
I'm using JAX-RS to create a web (rest) service that returns results in JSON format.
Everything is OK, except the encoding.
For example, I get:
..., parameter:"Dep\u00f3sitos" ,...
Instead of:
..., parameter:"Depósitos" ,...
I've tried using:
@Produces("application/json; charset=UTF-8")
but the problem remains. If I return it as XML using just:
@Produces("application/xml")
Everything is ok.
What do I need to set to produce the right type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你所需要的只是这个:
All you need is this:
我最终使用 GSON 而不是 IBM 的 JSON4J,事实证明它在处理自定义 Java 类序列化方面要好得多。
I ended up using GSON instead of IBM's JSON4J which proved to be much better at handling custom Java class serialization.
看看 Bryant Luk 对问题的回答“如何使用 JAX-RS 设置字符集?”并看看它是否有效。
Take a look at Bryant Luk's answer to the question "How to set the charset with JAX-RS?" and see if it does the trick.