一
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中的編碼方式和當前頁面編碼方式相同。