读取配置文件
程序员文章站
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()));
上一篇: Tesseract训练英文数字
下一篇: Object类型的参数