熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java開源技術 >> 正文

Struts從零開始四、Struts中的國際化[2]

2022-06-13   來源: Java開源技術 

  創建臨時中文資源文件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
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.