I18N
程序员文章站
2022-05-16 09:29:42
...
b]1.I18N原理[/b]
[b]a)ResourceBundle和Lacale的概念
b)资源文件
c)native2ascii[/b]
[b]2.struts的资源文件
a)Action-package-App级
b)PropertiesEditor插件
i.解压
ii.把features和plugin里面的东西复制到myeclipse-elipse的features和plugin里面
注意:
properties的命名: 例如app_en_US.properties
一般是在src下建全局的资源文件,然后在struts.xml中添加这么一句配置:
<constant name="struts.custom.i18n.resources" value="BBS" />其中的BBS就是资源文件的前缀[/b]
例子:[/b]
[b]app_en_US.properties[/b]
[b]app_zh_CN.properties[/b]
[b]a)ResourceBundle和Lacale的概念
b)资源文件
c)native2ascii[/b]
[b]2.struts的资源文件
a)Action-package-App级
b)PropertiesEditor插件
i.解压
ii.把features和plugin里面的东西复制到myeclipse-elipse的features和plugin里面
注意:
properties的命名: 例如app_en_US.properties
一般是在src下建全局的资源文件,然后在struts.xml中添加这么一句配置:
<constant name="struts.custom.i18n.resources" value="BBS" />其中的BBS就是资源文件的前缀[/b]
例子:[/b]
import java.util.Locale;
import java.util.ResourceBundle;
public class Test {
public static void main(String[] args){
ResourceBundle res=ResourceBundle.getBundle("app", Locale.US);
System.out.println(res.getString("welcome.msg"));
}
}
[b]app_en_US.properties[/b]
welcome.msg=welcome!
[b]app_zh_CN.properties[/b]
welcome.msg=欢迎你!