JAVA 配置管理 读取properties文件

2021-05-01 22:29

阅读:620

标签:tac   property   sources   inf   str   code   imp   ssl   string   

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 了

JAVA 配置管理 读取properties文件

标签:tac   property   sources   inf   str   code   imp   ssl   string   

原文地址:https://www.cnblogs.com/alpha-cat/p/13205645.html


评论


亲,登录后才可以留言!