JSP中文乱码

Posted 靜渁蓅堔

tags:

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

1. String rawQueryString=request.getQueryString();

URLDecoder.decode(rawQueryString.split("=")[1], "utf-8");

2.

String parameter=request.getParameter("parameter");

new String(parameter.getBytes("utf-8"));

new String(parameter.getBytes("ISO-8859-1"), "utf-8")

3.

<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"
 URIEncoding="UTF-8"/>

4.

<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"
useBodyEncodingForURI="true" />

request.setCharacterEncoding("utf-8");
String parameter=request.getParameter("parameter");
out.println(parameter);





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

jsp页面显示中文为问号的问题(乱码问题)

jsp插入数据库乱码 中文的参数怎么处理

jsp用a标签下载文件,中文出现乱码怎么解决?

JSP中文乱码问题《转》

jsp中用javaBean传中文参数是乱码

SSH环境 jsp url跳转,带中文参数乱码问题 高手请进,谢谢