<% // 以 get 方式提交資料時
// 讀取使用者名稱和密碼
string name = request.getparameter("name");
// 對請求資料進行字元編碼
name = new
string(name.getbytes("iso-8859-1"), "utf-8");
%>
<%// 以 post 方式提交資料時
// 設定讀取請求資訊的字元編碼為 utf-8
request.setcharacterencoding("utf-8");
//讀取使用者名稱和密碼
string name = request.getparameter("name");
string pwd= request.getparameter("pwd");
%>
在 tomcat 目錄結構 \conf\server.xml 中設定字符集
jsp中文亂碼
一 page 指定contenttype屬性時,做如下指定 page contenttype text html charset gb 2312 charset中首字母c要大寫。二 page 指定contenttype屬性時,做如下指定 page contenttype text html char...
jsp中文亂碼2
1.單獨的html頁面指定編碼為 2.單獨的jsp頁面設定編碼為 page pageencoding utf 8 3.request請求過來的引數設定編碼為 表單提交亂碼問題 request.setcharacterencoding utf 8 4.如果使用了獲取response物件的printwr...
JSP入門 中文亂碼
初學jsp,建立了兩個頁面jspforward.jsp與login.jsp jspforward.jsp裡使用了請求 標誌,是乙個中轉頁面 login.jsp則是乙個簡單的表單用以獲取從jspforward.jsp傳來的param 結果訪問jspforward.jsp自動跳轉之後,login.jsp...