struts2的国际化i18n

Posted Danial7777777

tags:

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

先来例子,普通的读取配置文件中不同语言信息,一个测试类,一份中文配置文件,一份英文配置文件

中文配置文件,书写中文“欢迎”,myelipse自动转码

public class Readi18n {
    
     public static void main(String[] args) {
        
         ResourceBundle rb=ResourceBundle.getBundle("app", Locale.CHINA);
         //ResourceBundle rb=ResourceBundle.getBundle("app", Locale.US);
         String msg = rb.getString("welcome.msg");
         System.out.println(msg);
    }    
}
欢迎

 

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

Struts2国际化

浅谈struts2的国际化----i18n

低代码平台多语言国际化(i18n)技术方案

j2ee之struts2的国际化数据方式

优维低代码:I18n 国际化

SpringBoot系列——i18n国际化