码迷,mamicode.com
首页 > 其他好文 > 详细

j2ee之struts2的国际化数据方式

时间:2017-06-14 14:29:09      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:.com   分享   需要   struts2   name   source   参考   pre   常量配置   

和不用框架的时候一样,需要写你要改变的文字的配置文件(文件名_语言缩写_国家缩写.properties)

可以参考我之前写的j2ee之国际化数据方式

技术分享

然后在struts.xml的配置文件中加入常量配置,如果不知道可以到源码的default.properties里面收索i18n关键字很快就可以找到

<struts>
    <constant name="struts.custom.i18n.resources" value="com.xinzhi.msg.msg"></constant>
</struts>

最后在jsp页面中插入你写过的数据:关键代码:

<!-- 这是使用struts标签 -->
<%@taglib uri="/struts-tags" prefix="s"%>

<!-- 这是使用struts标签,调用配置文件中你写的要转换的文字 -->
<s:text name="title"></s:text>

 

j2ee之struts2的国际化数据方式

标签:.com   分享   需要   struts2   name   source   参考   pre   常量配置   

原文地址:http://www.cnblogs.com/ShaoXin/p/7008308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!