无法从java构建路径中读取属性

时间:2016-12-16 11:07:06

标签: java buildpath

我正在开发一个带有maven配置的简单JSE项目(虽然我认为它与从Eclipse运行项目无关)。当我尝试使用FileInputStream获取Properties文件时,我得到了FileNotFoundException。

这是源配置 enter image description here

这是项目结构:

enter image description here

这是我用来读取属性文件的代码的一部分:

    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");
    }

请提示吗?

0 个答案:

没有答案