structs2 国际化 属性文件读取方式
public class MyActionSupport extends ActionSupport{ ... ...}public class ActionClass extends MyActionSupport { ... ...}
?这样的话,只要存在一个MyActionSupport.properties,在当前目录下的所有动作类都会读取这个文件。
?
3.?Interface.properties:这类文件和BaseClass.properties类似,Interface表示动作类实现的接口。
4.?如果动作类实现了ModelDriven,?那么重复第1步。
5.?package.properties:大家要注意。这个文件就叫package.properties。不象Interface和BaseClass都是泛指。这个文件可以放到当前动作类的包的任何一层目录下。如当前动作类在action.test包中。那么package.properties可以放到action目录中,也可以放到action"test目录中。Struts2会从离动作类最近的位置开始查找package.properties文件。
6.?搜索il8n资源信息
7.?查找全局资源属性文件
例如:
?
package action.test;import org.apache.struts2.*;import com.opensymphony.xwork2.ActionSupport;public class Internationalizing extends ActionSupport { public String execute() throws Exception { return "forward"; }}
?在action\test目录下有一个Internationalizing.properties文件,内容如下:
?
delete =?删除
save =?保存
我们可以在jsp文件中使用如下几种方法取出资源信息:
<s:property?value="getText('delete')"/>
<s:text name="save" />
??3.?使用<s:il8n>标签。这个标签可以直接定位属性文件,如abc.properties在WEB-INF\classes\test目录下,内容和Internationalizing.properties一样,则可以使用如下的代码读取abc.properties的内容:
<%@ taglib prefix="s" uri="/struts-tags" %><s:i18n name="test.abc"> <s:text name="save" /> <s:text name="delete" /></s:i18n>
?当然,我们也可以使用全局的属性文件,在WEB-INF"classes目录下建立一个struts.properties文件,内容如下:
struts.custom.i18n.resources=my
在WEB-INF\classes目录下建立一个my.properties文件,当Struts2按着上述的顺序没有找到相应的属性文件时,最后就会考虑寻找全局的属性文件,因此,就会找到my.properties。
???还可以通过属性文件名来让Struts2按着客户端浏览器的语言环境来找符合某种语言的属性文件。如有三个属性文件language.properties、language_en.properties、language_zh.properties。如果客户端的语言是中文,Struts2就会读language_zh.properties,如果是英文,就会读language_en.properties。如果这两个文件的某个不存在,就会读language.properties。读者可通过IE的[工具]->[Internet]->[语言]来测试客户端浏览器的语言。
<