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

Posted claireyuancy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取properties属性文件——国际化相关的知识,希望对你有一定的参考价值。

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属性文件——国际化的主要内容,如果未能解决你的问题,请参考以下文章

ResourceBundle 同时从 2 个 Properties 文件中读取

spring 国际化 js怎么设置

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

Spring Boot 国际化(messages.properties)

Properties文件中文属性读取是乱码问题

Java IO流 之 ResourceBundle 读取国际化资源文件