request 中文乱码解决方法

Posted archer-wen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了request 中文乱码解决方法相关的知识,希望对你有一定的参考价值。

POST请求

request.setCharacterEncoding("UTF-8");

 

GET和POST请求

页面:UTF-8
Tomcat:iso8859-1

解决思路:
页面(utf-8编码) - Tomcat(iso8859-1解码)
先iso8859-1编码,再用utf-8解码
String str = request.getParameter("");
new String(str.getBytes("iso8859-1"),"UTF-8")

 

以上是关于request 中文乱码解决方法的主要内容,如果未能解决你的问题,请参考以下文章

request.getParameter(“参数名”) 中文乱码解决方法

中文乱码解决方案

Request.Querystring中文乱码问题解决

jsp中request接收中文参数乱码问题解决办法

求JSP.NET中文乱码问题解决方案

python爬虫中文乱码解决方法