我有一个配置文件,我必须从中读取一些属性。此配置文件存在于不同的位置,但具有相同的名称。我能够读取配置文件,但只能从我的项目中读取一个。我使用了以下代码:
Properties prop = new Properties();
String propFileName = "config.properties";
InputStream inputStream = getClass().getClassLoader().getResourceAsStream(propFileName);
try {
prop.load(inputStream);
} catch (IOException e2) {
// TODO Auto-generated catch block
e2.printStackTrace();
}
if (inputStream == null) {
try {
throw new FileNotFoundException("property file '" + propFileName + "' not found in the classpath");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
我必须使用完整路径打开配置文件,而不是使用propFileName =“config.properties”来插入配置文件的绝对路径。如果我使用绝对路径,则无法打开配置文件。 怎么办呢?
答案 0 :(得分:4)
InputStream inputStream = new FileInputStream("path");
将打开一个带有绝对路径的文件。
注意:这只适用于文件,不适用于插件jar中包含的任何内容。
答案 1 :(得分:3)
您可以使用FileInputStream在项目路径之外查找配置文件。
Properties prop = new Properties();
InputStream input = new FileInputStream("/home/ubuntu/Desktop/sample.properties");
prop.load(input);
System.out.println(prop.get("test"));
指定路径时,我们需要提供带扩展名的文件名。