spring 俄语字符在java中显示为???

qyswt5oh  于 2023-04-10  发布在  Spring
关注(0)|答案(2)|浏览(158)

我有一个控制器,它必须返回一个带有俄语名称的JSON字符串,但我得到的响应是????(无效字符)。

  1. @Controller
  2. public class ManifestController {
  3. @ResponseBody
  4. @RequestMapping(value = {"/manifest.json","/manifest"}, method = { RequestMethod.GET }, produces = {MediaType.APPLICATION_JSON_VALUE})
  5. public String getManifestJson(
  6. HttpServletRequest request)
  7. {
  8. Employee e= new Employee ();
  9. e.setName("Мегафон Игры");
  10. return JsonUtil.jsonStringify(e); //it converts object to json using JsonObjectMapper
  11. }
  12. }
vom3gejh

vom3gejh1#

我在我的机器上试过了,它工作了

  1. User e = new User();
  2. e.setFirstName("Мегафон Игры");
  3. ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
  4. String json;
  5. json = ow.writeValueAsString(e);
  6. return json;

我收到的:

  1. {
  2. "id": 0,
  3. "creationDate": null,
  4. "username": null,
  5. "firstName": "Мегафон Игры",
  6. "lastName": null,
  7. "email": null,
  8. "updateDate": null,
  9. "active": 0
  10. }
展开查看全部
olmpazwi

olmpazwi2#

它帮助我在响应头中设置编码:

  1. response.setCharacterEncoding("UTF-8");

相关问题