Spring--SpringMVC3.1的ResponseBody返回字串亂碼問題解決
SpringMVC的@ResponseBody註解可以將請求方法返回的物件直接轉換成JSON物件,但是當返回值是String的時候,中文會亂碼。
原因是因為其中字串轉換和物件轉換用的是兩個轉換器,而String的轉換器中固定了轉換編碼為"ISO-8859-1"
解決辦法:
1.返回字串時,將字串結果轉
return new String("你好".getBytes(), "ISO-8859-1");
2.新增@RequestMapping註解,配置produces的值
@RequestMapping(value = "/add", produces = {"application/json;charset=UTF-8"})
3.StringHttpMessageConverter重寫
public class UTF8StringHttpMessageConverter extends
AbstractHttpMessageConverter
public static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8");
private final List
private boolean writeAcceptCharset = true;
public UTF8StringHttpMessageConverter() {
super(new MediaType("text", "plain", DEFAULT_CHARSET), MediaType.ALL);
this.availableCharsets = new ArrayList
.availableCharsets().values());
}
/**
* Indicates whether the {@code Accept-Charset} should be written to any
* outgoing request.
*
* Default is {@code true}.
*/
public void setWriteAcceptCharset(boolean writeAcceptCharset) {
this.writeAcceptCharset = writeAcceptCharset;
}
@Override
public boolean supports(Class> clazz) {
return String.class.equals(clazz);
}
@Override
protected String readInternal(Class clazz, HttpInputMessage inputMessage)
throws IOException {
Charset charset = getContentTypeCharset(inputMessage.getHeaders()
.getContentType());
return FileCopyUtils.copyToString(new InputStreamReader(inputMessage
.getBody(), charset));
}
@Override
protected Long getContentLength(String s, MediaType contentType) {
Charset charset = getContentTypeCharset(contentType);
try {
return (long) s.getBytes(charset.name()).length;
} catch (UnsupportedEncodingException ex) {
// should not occur
throw new InternalError(ex.getMessage());
}
}
@Override
protected void writeInternal(String s, HttpOutputMessage outputMessage)
throws IOException {
if (writeAcceptCharset) {
outputMessage.getHeaders().setAcceptCharset(getAcceptedCharsets());
}
Charset charset = getContentTypeCharset(outputMessage.getHeaders()
.getContentType());
FileCopyUtils.copy(s, new OutputStreamWriter(outputMessage.getBody(),
charset));
}
/**
* Return the list of supported {@link Charset}.
*
*
* By default, returns {@link Charset#availableCharsets()}. Can be
* overridden in subclasses.
*
* @return the list of accepted charsets
*/
protected List
return this.availableCharsets;
}
private Charset getContentTypeCharset(MediaType contentType) {
if (contentType != null && contentType.getCharSet() != null) {
return contentType.getCharSet();
} else {
return DEFAULT_CHARSET;
}
}
}
配置檔案:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28624388/viewspace-768058/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 解決Spring中ResponseBody返回中文亂碼問題Spring
- SpringMVC 使用@ResponseBody返回json 中文亂碼SpringMVCJSON
- 字串的encode與decode解決亂碼問題字串
- 解決SSH亂碼問題
- 解決中文亂碼問題
- 解決 plsql 遇到亂碼的問題SQL
- oracle字元亂碼問題的解決Oracle字元
- 解決Flex裡的亂碼問題Flex
- MySql中文亂碼問題解決MySql
- Jmeter 解決中文亂碼問題JMeter
- Java 解決中文亂碼問題Java
- RDSSQLSERVER解決中文亂碼問題SQLServer
- 解決MySQL中文亂碼問題MySql
- MYSQL亂碼問題解決方法MySql
- 解決confluence的亂碼問題
- DES加密中文亂碼問題的解決加密
- CentOS中文亂碼問題的解決方法CentOS
- java中亂碼問題解決方法Java
- cat 輸出亂碼問題解決
- 解決plsql中中文亂碼問題SQL
- TongWeb下亂碼問題解決思路Web
- 解決使用Git Bash亂碼問題Git
- plsql查詢亂碼問題解決SQL
- 解決Mysql匯入亂碼問題MySql
- 徹底解決程式亂碼問題
- springmvc 解決中文亂碼問題SpringMVC
- js解決url中文亂碼問題JS
- jmeter 樹結構返回亂碼解決JMeter
- Sublime Text 3 中文亂碼問題的解決
- flashfxp 亂碼,2種辦法解決flashfxp 亂碼問題
- Spring MVC3返回JSON資料中文亂碼問題解決(轉)SpringMVCJSON
- URL地址中的中文亂碼問題的解決
- webView的使用及其亂碼問題的解決方案WebView
- JavaWeb 亂碼問題終極解決方案!JavaWeb
- java中解決request中文亂碼問題Java
- SpringMvc解決Restful中文亂碼問題SpringMVCREST
- 解決CentOS 中顯示亂碼問題CentOS
- python 中文亂碼問題解決方案Python