國際化的作用就是根據不同國家的使用者在訪問web或其他型別的程式時,將各種資訊以本地的常用形式顯示出來,如介面資訊在中國,就會顯示中文資訊,在以英文為主的國家裡,就會顯示英文資訊。還有就是一些資訊的格式,如日期格式等。
1、在src下建立 struts.properties 檔案、globalmessages_en_us.properties檔案和globalmessages_zh_cn.properties 檔案
2、修改檔案內容struts.properties 檔案 中加入以下**:
struts.custom.i18n.resources=globalmessages
以下建立的語言包都以globalmessages開頭命名。
定義英文語言包,在globalmessages_en_us.properties
檔案中加入以下**:
#number:
global.format.money=
global.format.money02=
#datetime:
global.format.date=
global.format.time=
global.format.datetime=
global.format.datetime02=
from:
簡單案例:
jsp之資料格式化:
Struts2的國際化
1.在struts.xml中新增 2.在src根檔案中新建file檔案命名為message zh.properties這是漢語 message en.properties 這是英語的。這裡的值是成鍵值對出現的。3.在jsp檔案中則可以實現其國際化在如使用者名稱則可以寫成如果是submit則 如果不在...
Struts2的國際化
struts2國際化分為三類 全域性的,包級別的,類級別的。全域性的 1 在struts.xml中的指定basename 國際化檔名為 basename 語言名 國家名.properties 如 message zh cn.properties 2 全域性的國際化資源檔案放在src下面。包級別的 1...
struts2的國際化
首先把struts框架搭建成功,然後在src下建立資源檔案,資源檔案命名可以是如下三種形式 basename language country.properties basename language.properties basename.properties basename可自定義,語言編碼和...