我正在开发一个带有maven配置的简单JSE项目(虽然我认为它与从Eclipse运行项目无关)。当我尝试使用FileInputStream获取Properties文件时,我得到了FileNotFoundException。
这是项目结构:
这是我用来读取属性文件的代码的一部分:
prop = new Properties();
InputStream input = null;
try {
input = new FileInputStream(new File(FLUX_PROPERTIES+".properties"));
prop.load(input);
paramDir = prop.getProperty(PARAM_DIR);
input.close();
prop = null;
} catch (FileNotFoundException e) {
LOG.error("Cannot find properties file");
}
请提示吗?