Struts2 国际化

Posted CircleSmart的个人博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2 国际化相关的知识,希望对你有一定的参考价值。

1.在struts.xml中配置

<constant name="struts.custom.i18n.resources" value="resourceFileName"></constant>
<constant name="struts.i18n.encoding" value="utf-8"></constant>

2.在src文件下添加国际化资源文件

例:xxResource_zh_CN.properties   login.username="用户名"

  xxResource_en_US.properties   login.username="username"

3.访问方式

<s:text name="" key="login.username" />

 <s:textfield name="" label="%{getText(‘login.username‘)}" />

4.<a href="lang?request_locale=en_US" />

5.创建Action,只需返回SUCCESS,跳转到原网址即可


以上是关于Struts2 国际化的主要内容,如果未能解决你的问题,请参考以下文章

Struts2框架使用之struts2的国际化

struts2国际化

Struts2之国际化

struts2--国际化

Struts2学习笔记(12)Struts2国际化

Struts2 国际化