欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

读取配置文件

程序员文章站 2022-07-06 09:56:15
...

1.读取绝对路径下的配置文件:

FileInputStream fis = new FileInputStream("E:\\log4j.properties");
Properties properties = new Properties();
properties.load(fis);

 2.读取相对目录下的配置文件:

     URL url = Test.class.getResource("/config/log4j.properties");

     Properties properties = new Properties();

     properties.load(new InputStreamReader(url.openStream()));

 

 

 

相关标签: log4j