gpt4 book ai didi

java - 读取conf文件夹内的属性文件

转载 作者:行者123 更新时间:2023-12-01 13:45:00 25 4
gpt4 key购买 nike

我有一个属性文件,位于conf 文件夹下。 conf文件夹位于项目根目录下。我正在使用以下代码。

public class PropertiesTest {
public static void main(String[] args) {
InputStream inputStream = PropertiesTest.class
.getResourceAsStream("/conf/sampleprop.conf");
Properties prop = new Properties();
try {
prop.load(inputStream);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

System.out.println(prop.getProperty("TEST"));
}
}

但是我得到了空指针异常。

我尝试过使用

InputStream inputStream = PropertiesTest.class
.getResourceAsStream("./conf/sampleprop.conf");

InputStream inputStream = PropertiesTest.class
.getResourceAsStream("conf/sampleprop.conf");

但是都会导致空指针异常。任何人都可以帮忙吗?提前致谢

最佳答案

首先尝试恢复您的工作目录:

String workingDir = System.getProperty("user.dir");
System.out.println("Current working dir: " + workingDir);

然后很简单:

Properties propertiesFile = new Properties();
propertiesFile.load(new FileInputStream(workingDir+ "/yourFilePath"));
String first= propertiesFile.getProperty("myprop.first");

问候,法比奥

关于java - 读取conf文件夹内的属性文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20422691/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com