jsp URL中文传值乱码问题

时间:2022-06-11 20:13:06


1.在tomcat下的server.xml中插入如下代码

<Connector port="8080" protocol="HTTP/1.1" URIEncoding="utf-8" useBodyEncodingForURI="true"

   connectionTimeout="20000" 
   redirectPort="8443" />

2.对jsp页面js中要传递参数进行加密

encodeURI(param)

2.action中编写

request.setCharacterEncoding("UTF-8");

new String(URLDecoder.decode(param).getBytes("iso-8859-1"),"utf-8")(不需要)



以下拷贝http://blog.csdn.net/woshixuye/article/details/7547710

Jsp中

var num = $("#txtNum").val();
var name = encodeURIComponent($("#txtName").val());
var className = encodeURIComponent($("#selectClasses option:selected").text());

 

Action中

stu.setNum(URLDecoder.decode(num, "UTF-8"));
stu.setName(URLDecoder.decode(name, "UTF-8"));
stu.setClassName(URLDecoder.decode(className, "UTF-8"));

一般在post中struts过滤器会自动处理。而在get中,需要这样操作。


原理:

encodeURIComponent是js内置函数,是将中文韩文等特殊字符转换成utf-8格式的url编码。

如果给后台传递参数需要使用encodeURIComponent时,需要后台解码对utf-8支持

还要注意的是form中的编码方式和当前页面编码方式相同。