版权声明:本文为博主原创文章,未经博主允许不得转载。
目录(?)[+]
在使用spring MVC Controller的过程中,发现返回到客户端的的中文出现乱码。后台Java代码:
[java] view plain copy print ? @RequestMapping(value = "/upload", method = RequestMethod.POST, produces = "text/json") public @ResponseBody String upload( @RequestParam("groupId") String groupId, HttpServletRequest request, HttpServletResponse response) { //... }在produce参数中加入编码声明
charset=UTF-8
修改后的代码为:
[java] view plain copy print ? @RequestMapping(value = "/upload", method = RequestMethod.POST, produces = "text/json;charset=UTF-8") public @ResponseBody String upload( @RequestParam("groupId") String groupId, HttpServletRequest request, HttpServletResponse response) { //... }--------------------------------------------------------------------------------------
headers: 指定request中必须包含某些指定的header值,才能让该方法处理请求。