I18N

b]1.I18N原理[/b]
a)ResourceBundle和Lacale的概念
   b)资源文件
   c)native2ascii

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]
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"));
	}

}

app_en_US.properties
welcome.msg=welcome!

app_zh_CN.properties
welcome.msg=欢迎你!

你可能感兴趣的:(struts,i18n)