JAVA 配置管理 读取properties文件

import java.io.InputStream;
import java.util.Properties;
public class ConfigurationManager {
    //Properties对象采用private修饰, 表示是其私有,外界不可改变
    private static Properties prop=new Properties();
    static {
        try{
            InputStream in=ConfigurationManager.class
                    .getClassLoader().getResourceAsStream("my.properties");
            prop.load(in);
        }catch (Exception e){
            e.printStackTrace();
        }

    }

    public static String getProperty(String key){
        return prop.getProperty(key);
    }
}

然后在 resources 里面放入你的配置文件 ,  以 key value来读取.

 

 

 在外部测试 , 先导入这个静态类, 你就直接调用 getproperty , 就会返回 value 了

posted @ 2020-06-28 23:25  挪威森林猫Zzz  阅读(264)  评论(0编辑  收藏  举报