Java语言提供了ResourceBundle类来对properties类型的资源文件加以处理。
开始之前,我们先解释一下什么是properties类型的资源文件。
在Java语言中,使用一种以.properties为扩展名的文本文件作为资源文件,该类型的文件的内容格式为类似:
#注释语句
key = value
的形式。其中的注释语句ResourceBundle类在处理的时候默认的加以忽略。
对于properties文件的格式主要有如下的形式:
resource.propreties //默认的格式
resource_zh_CN.properties //zh-----语言是汉语,CN---地区是中国
resource_ja_JP.properties // ja---语言是日语,JP---地区是日本
resource_en_US.properties // en--语言是英语,US---地区是美国
等等。
对于上面的各种形式的properties文件,ResourceBundle类在加载的时候也使用的不同的方式。
当ResourceBundle类在找不到要求的文件的时候,会 查找默认的文件,当默认的文件也找不到的时候,
就会抛出异常。
String resourceFile="resource_en_US";
Locale locale_es = new Locale("en","ES");
ResourceBundle resource_es = ResourceBundle.getBundle(resourceFile,locale_es);
System.out.println(resource_es.getString(属性的名称));
上面的代码是具体的根据各国的地区和语言对资源的文件进行的读取。
如果资源文件只是默认的格式,而且需要对属性进行隐性的调用,那么就看下面的代码:
private static final String name="username";
private static final String pasword="password";
private static final String file_name="messages";
ResourceBundle bundle = ResourceBundle.getBundle(file_name);
Map<String,String> map =new HashMap<String,String>();
Enumeration<String> enum1=bundle.getKeys();
while(enum1.hasMoreElements()){
String key = enum1.nextElement();
String msg = bundle.getString(key);
//System.out.println(msg);
map.put(key, msg);
}
String username = map.get(PropertiesUtil.name);
String password = map.get(PropertiesUtil.pasword);
System.out.println(username+"----"+password);
程序执行的结果为:
leibao----123456
以上就是通过ResourceBundle实现国际化显示。
具体的关于ResourceBundle类里面还有很多的方法,可以参考api文档,
java.util.ResourceBundle