国际化

作者: 黎涛note | 来源:发表于2017-12-09 23:28 被阅读0次

    1、首先在struts.xml中定义消息资源文件的基本名:

    struts.custom.i18n.resources=messages
    

    2、提供各Locale对应的资源文件:

    message_zh_CN.properties
    message_en_US.properties
    

    3、在Action类中根据key获取消息内容:
    方法:getText(“key”); getText("key",new String[]{"content"});
    4、在校验配置文件中获取消息内容:

    <message key="login.username.empty"></message>
    

    5、在jsp页面中使用<s:text>标签获取消息内容:

    <input type="submit“ value='<s:text name="login.btn.label"></s:text>'/>
    

    相关文章

      网友评论

          本文标题:国际化

          本文链接:https://www.haomeiwen.com/subject/hhqmixtx.html