性格'编码为 ���爪哇语
我需要从 API 返回的期望响应是 (I'm),但我得到的是 I���m。 基本上 ' 被编码为 ���。 API 的响应来自 JSON 文件。 当我在本地主机上运行 API 时,它给出了所需的响应,但在部署它的开放轮班集群上,我得到了 ���。
需要明确的是:
- 我想要的输出是
Im
- 我的实际输出是
I���m
在我的Spring Boot 应用程序,对于此 API,我已将 HTTP 标头设置为
httpHeaders.add(HttpHeaders.CONTENT_TYPE, "application/json; charset=UTF-8");
,但编码仍未解析。
关于如何开展这项工作有什么建议吗?
The desired response that I need to return from my API is (I’m) but instead of this I am getting I���m.
Basically ' is getting encoded as ���.
The response of the API is coming from a JSON file.
When I run the API on my localhost it is giving desired response, but on an open-shift cluster where it is deployed I am getting ���.
To be clear:
- My desired output is
I’m
- My actual output is
I���m
In my Spring Boot Application, for this API I have made the HTTP Headers as
httpHeaders.add(HttpHeaders.CONTENT_TYPE, "application/json; charset=UTF-8");
but still the encoding is not resolved.
Any suggestions on how to make this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论