java配置文件

几种读取方式

基于ClassLoder读取配置文件

    Properties properties = new Properties();
    // 使用ClassLoader加载properties配置文件生成对应的输入流
    InputStream in = 
    PropertiesMain.class.getClassLoader().getResourceAsStream("config/config.properties");
    // 使用properties对象加载输入流
    properties.load(in);
    //获取key对应的value值
    properties.getProperty(String key);

注意: 该方式只能读取类路径下的配置文件,有局限但是如果配置文件在类路径下比较方便。

基于 InputStream 读取配置文件

 Properties properties = new Properties();
 // 使用InPutStream流读取properties文件
 BufferedReader bufferedReader = new BufferedReader(new FileReader("E:/config.properties"));
 properties.load(bufferedReader);
 // 获取key对应的value值
 properties.getProperty(String key);

注意: 该方式的优点在于可以读取任意路径下的配置文件

通过 java.util.ResourceBundle 类来读取

通过 ResourceBundle.getBundle() 静态方法来获取(ResourceBundle是一个抽象类),这种方式来获取properties属性文件不需要加.properties后缀名,只需要文件名即可

//config为属性文件名,放在包com.test.config下,如果是放在src下,直接用config即可  
ResourceBundle resource = ResourceBundle.getBundle("com/test/config/config");
String value = resource.getString("key"); 

从 InputStream 中读取,获取 InputStream 的方法和上面一样,不再赘述
ResourceBundle resource = new PropertyResourceBundle(inStream);

注意

在使用中遇到的最大的问题可能是配置文件的路径问题,如果配置文件入在当前类所在的包下,那么需要使用包名限定,如:config.properties入在com.test.config包下,则要使用com/test/config/config.properties(通过Properties来获取)或com/test/config/config(通过ResourceBundle来获取);属性文件在src根目录下,则直接使用config.properties或config即可。

posted @ 2021-06-08 22:14  剪水行舟  阅读(445)  评论(0)    收藏  举报