一:准备资源文件,资源文件的命名格式如下:
baseName_language_country.properties
baseName_language.properties
baseName.properties
其中baseName是资源文件的基本名,我们可以自定义,但language和country必须是java支持的语言和国家。如:
中国大陆:baseName_zh_CN.properties
美国:baseName_en_US.properties
现在为应用添加两个资源文件:
二:准备好资源文件后:配置struts.xml文件
struts.custom.i18n.resources常量把资源文件定义为全局资源文件,
<constant name="struts.custom.i18n.resources" value="itcast"/>
Itcast为资源文件的基本名。
三:后面我们可以在页面或action中访问国际化信息:
1在JSP页面中使用<s:text name=””/>标签输出国际化信息。
name为资源文件中的key。
2在action 类中,可以继承ActionSupport,使用getText(“key”)方法得到国际
化信息,该方法的第一个参数用于指定资源文件中的key。
3在表单标签中,通过key属性指定资源文件中的key,如:
<s:textfield name=”realname” key=”user”/>
想取得国际化内容:1继承action
类中,可以继承ActionSupport,2使用this.getText方法
ActionContext.getContext().put("message"为jsp页面中变量,
this.getText获得baseName_zh_CN.properties文件中对应key值("welcome"));
中英文环境修改: 工具---》选项---》语言,进行修改..