码迷,mamicode.com
首页 > 其他好文 > 详细

读取properties属性文件——国际化

时间:2017-04-21 22:48:06      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:ase   resources   sof   java   obj   orm   文件的   content   bundle   

public class PropertiesInfo {
	/**
	 * PropertiesInfo实例
	 */
	private static PropertiesInfo pi = null;
	
	private static ResourceBundle resource;
	
	/**
	 * 资源文件基名
	 * 该资源文件应该放置在classpath下
	 */
	private final String PROPERTIES_BASE_NAME = "MessageResources";
	
	/**
	 * 构建资源文件对象
	 *
	 */
	private PropertiesInfo() {
		resource = ResourceBundle.getBundle(PROPERTIES_BASE_NAME);
	}
	
	/**
	 *  获取一个PropertiesInfo实例
	 * @return PropertiesInfo
	 */
	public static synchronized PropertiesInfo getInstance() {
		if(pi == null) {
			pi = new PropertiesInfo();
		}
		return pi;
	}
	
	/**
	 * 依据资源文件的key读取值
	 * @param key
	 * @return String
	 */
	public String getValue(String key) {
		return resource.getString(key);
	}
	
	/**
	 * 依据资源文件的key读取值
	 * @param key
	 * @param args
	 * @return String
	 */
	public String getValue(String key, Object args[]) {
		return MessageFormat.format(resource.getString(key), args);
	}
}


对于ResourceBundle的说明http://lavasoft.blog.51cto.com/62575/184605/



读取properties属性文件——国际化

标签:ase   resources   sof   java   obj   orm   文件的   content   bundle   

原文地址:http://www.cnblogs.com/claireyuancy/p/6746232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!