读取系统配置文件

读取系统配置文件

配置文件:resources/config.properties

package com.ibilling.resourcemanage.utils;

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

public class ConfigParser {
    private static Properties p = new Properties();
    static {
        InputStream is = null;
        try {
            //读取系统配置文件
            is = ConfigParser.class.getClassLoader().getResourceAsStream("config.properties");
            if(is!=null){
                p.load(is);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }finally{
            if(is!=null){
                try {
                    is.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
/**
 * 调用该方法获取系统参数
 * @return
 */
public static Properties getProperties(){
    return p;
}

}

你可能感兴趣的:(读取系统配置文件)