如何阅读conf.properties文件?

时间:2014-09-15 03:16:05

标签: selenium selenium-webdriver

我想阅读conf.properties文件,但不是通过提供硬编码路径,所以我怎么能鳍呢?我使用下面的行,但是它写了一个空值,但路径是正确的。

InputStream inputStream = ReadPropertyFile.class.getResourceAsStream(“configuration / conf.properties”);

1 个答案:

答案 0 :(得分:0)

假设您的项目中有配置文件夹&该文件夹包含conf.properties 在您的函数中使用以下 -

String projdir = System.getProperty("user.dir");
String propfilepath = projdir+"\\config\\"+"conf.properties";
Properties p = new Properties();
p.load(new FileInputStream(propfilepath ));

String value  = p.getProperty("test");
System.out.println(value); // It is returning me a value corresponding to key "test"