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

获取配置文件的工具类

时间:2015-01-25 12:24:13      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
/**
 * 读取配置文件
 * @author zhangrujing
 *
 */
public enum Config {

    INSTANCE;
    
    private volatile Properties configuration = new Properties();
    
    public void init() {
        getConfiguration("system-config");
    }
    
    private void getConfiguration(String nodeName) {
        InputStream is = this.getClass().getResourceAsStream("/" + nodeName + ".properties");
        if (is != null) {
            try {
                this.configuration.clear();
                this.configuration.load(is);
            } catch (IOException e) {
            } finally {
                try {
                    is.close();
                } catch (Throwable t) {}
            }
        }
    }
    
    public String getConfigValue(String key) {
          return this.configuration.getProperty(key);
    }
    
}

 

求大神指导如何读取多个配置文件

获取配置文件的工具类

标签:

原文地址:http://www.cnblogs.com/IT-Monster/p/4247939.html

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