創建臨時中文資源文件applicationResources_temppropertyies
labelusername=用戶名
labelpassword=密碼
buttonsubmit=確定
buttonreset=重置
對臨時資源文件進行編碼轉換
在JDK中提供了nativeascii命令它能夠實現字符編碼轉換在DOS下執行以下命令將生成按GBK以編碼的中文資源文件
applicationResources_zh_CNproperties
nativeascii –encoding gbk applicationResources_tempproperties
applicationResources_zh_CNproperties
生成的applicationResources_zh_CNproperties的內容如下
labelusername=uuud
labelpassword=ubcu
buttonsubmit=ueuba
buttonreset=ucdufe
當web用戶的Locale為中文時Struts框架將自動選擇來自applicationResources_zh_CNproperties文件的消息文本
創建英文的資源文件
labelusername=username
labelpassword=password
buttonsubmit=submit
buttonreset=reset
完成以上幾個步驟後在web 應用程序的根目錄WEBINF目錄classes目錄下應該有了三個資源文件
默認資源文件applicationResourceproperties
中文資源文件applicationResource_zh_CNproperties
英文資源文件applicationResource_enproperties
[] [] [] []
From:http://tw.wingwit.com/Article/program/Java/ky/201311/29116.html