struts2 jsp教程表單提交到action中文亂碼問題
struts2中預設提交的格式是utf-8格式的,故需要把中文字元轉碼後才能正常顯示,解決方案:
直接在struts.xml檔案中<struts> 標籤內部添加一句如下代碼:
<constant name="struts.i18n.encoding" value="gbk" />
注意:如果你jsp頁面中使用的是utf-8格式,那麼此處也寫成utf-8格式。
下面看代碼
下面是一個提交頁面(submit.jsp),代碼如下:
<html>
<head>
<title>jsp的中文處理</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<form name="form1" method="post" action="process.jsp">
<div align="center">
<input type="text" name="name">
<input type="submit" name="submit" value="submit">
</div>
</form>
</body>
</html>
下面是處理頁面(process.jsp)代碼:
<%@ page contenttype="text/html; charset=gb2312"%>
<html>
<head>
<title>jsp的中文處理</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<%=request.getparameter("name")%>
</body>
</html>
如果submit.jsp提交英文字元能正確顯示,如果提交中文時就會出現亂碼。原因:瀏覽器預設使用utf-8編碼方式來發送請求,而utf-8和gb2312編碼方式表示字元時不一樣,這樣就出現了不能識別字元。解決辦法:通過request.secharacterencoding("gb2312")對請求進行統一編碼,就實現了中文的正常顯示。修改後的process.jsp代碼如下:
<%@ page contenttype="text/html; charset=gb2312"%>
<%
request.secharacterencoding("gb2312");
%>
<html>
<head>
<title>jsp的中文處理</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<%=request.getparameter("name")%>
</body>
</html>