JAX-RS编码

发布于 2024-10-20 03:05:58 字数 442 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(3

故乡的云 2024-10-27 03:05:58

你所需要的只是这个:

String back = "Depósitos";
return new String(back.getBytes(), "UTF8");

All you need is this:

String back = "Depósitos";
return new String(back.getBytes(), "UTF8");
如梦亦如幻 2024-10-27 03:05:58

我最终使用 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.

梦在深巷 2024-10-27 03:05:58

看看 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.

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