34. RestTemplate中文乱码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了34. RestTemplate中文乱码相关的知识,希望对你有一定的参考价值。
解决方法:
设置httpheader的时候,加上utf-8编码
String body = "中文你好"; RestTemplate restTemplate = new RestTemplate(); HttpHeaders headers = new HttpHeaders(); MediaType type = MediaType.parseMediaType("application/json; charset=UTF-8"); headers.setContentType(type); HttpEntity<String> formEntity = new HttpEntity<String>(body, headers);
本文出自 “www.bogo.com” 博客,请务必保留此出处http://483181.blog.51cto.com/473181/1959017
以上是关于34. RestTemplate中文乱码的主要内容,如果未能解决你的问题,请参考以下文章
使用RestTemplate在代码内调用POST请求的参数乱码问题