标签:源文件 默认 xxx 通过 efault 规范 ring 语言 解决
一般的命名规范是: 自定义名语言代码国别代码.properties,如果是默认的,直接写为:自定义名.properties。
例如:
res_en_US.properties
res_zh_CN.properties res.properties
系统会自动选择属性资源文件
ResourceBundle bundle = ResourceBundle.getBundle("res", new Locale("zh", "CN"));
new Locale(“zh”, “CN”)提供本地化信息
程序会首先在classpath下寻找res_zh_CN.properties文件,若res_zh_CN.properties文件不存在,则取找res_zh.properties,如还是不存在,继续寻找res.properties,若都找不到就抛出异常。
如:bundle = ResourceBundle.getBundle("res", Locale.US);
bundle = ResourceBundle.getBundle("res", Locale.getDefault());
value= bundle.getString("key");
注意:ResourceBundle.getBundle("xxx", Locale.US);
ResourceBundle类基于类读取属性文件:将属性文件当作类,意味着属性文件必须放在包中(或src根目录下),使用属性文件的全限定性类名而非路径指代属性文件。
ResourceBundle bundle = ResourceBundle.getBundle("com.rong.res.application");此时读取的是com.rong.res包下的application.properties属性文件
标签:源文件 默认 xxx 通过 efault 规范 ring 语言 解决
原文地址:https://www.cnblogs.com/57rongjielong/p/8878096.html