action重定義時使用下面的方式html
<result name="aaal" type="redirectAction">java
<param name="actionName">aaa.action</param> mysql
<param name="showMsg">${showMsg}</param>web
<param name="encode">true</param>sql
</result>數據庫
終於在本身的項目中引入struts2了,但一上來就來一箇中文亂碼的問題。google了半天找了幾個不痛不癢的結果,非常不滿意。又調試了半天,終於 解決了中文亂碼的問題。總結一下,中文亂碼,首先要區分是頁面亂碼、action亂碼,仍是數據庫亂碼。大體的原理是java使用unicode編碼-- >window使用gbk(gb2312的擴展集)--mysql默認使用utf-8(unicode的一種編碼方法),這樣轉來轉去就亂碼了 ^_^。解決方法以下: apache
<%@ page contentType="text/html; charset=UTF-8"%> <%@ page pageEncoding="UTF-8" %> |
struts.devMode=false struts.locale=zh_CN struts.serve.static.browserCache=false |
其中locale、encoding就是字符集的設定了。
3. 在web.xml加個filter
<!-- zh-cn encoding --> <filter> <filter-name>struts-cleanup</filter-name> <filter-class> org.apache.struts2.dispatcher.ActionContextCleanUp </filter-class> </filter> <filter-mapping> <filter-name>struts-cleanup</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> |
跟上述方法,相似還有在action中設定字符編符.
|
經過上述方法,基本就能夠搞定中文亂碼的問題了。固然,也有例外(如web server的版本\數據庫的版本等等)。象在個人一個項目碰到一箇中文亂碼,tomcate5.5是會亂碼的,而在tomcate6中就不會。這邊就涉及到tomcate connector字符的設置了。
<Connector port="80" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="GBK" /> |
--------------------------------------------------------------------
後記之一:在使用struts2時,還是遇到一種亂碼。後來調試才發現,struts2的web.xml配置是有順序的。
在web.xml中EncodingFilter的位置應該在Struts2的FilterDispatcher以前,由於要先調整字符集,而後進入Action。
按照Struts2的API,filter的順序是
struts-cleanup filter
SiteMesh filter
FilterDispatcher
--------------------------------------------------------------------
後記之二:這個方法是下下策了,只有在前面的方法都無效時才使用。
在action中直接使用request.getParameter()時;仍是出現亂碼。緣由分析以下:
一、getParameter()是有帶字符參數的。例:
String s = (String)request.getParameter("txt").getBytes("iso-8859-1");
二、String也能夠帶有字符參數。
String(byte[] bytes, String charsetName)
構造一個新的 String,方法是使用指定的字符集解碼指定的字節數組。
例:String s = new String("中文","utf-8");
三、綜合上述兩點,編寫一個類來完成此項
public class ConvertCharacter{ public String Convert(String s){ String result; byte[] temp ; try{ temp = s.getBytes("iso-8859-1"); result = new String(temp,"utf-8"); } return result; } } |