在cmd上运行时,jar不会搜索.properties文件

时间:2015-06-04 08:22:34

标签: java jar cmd

当我在cmd上运行jar时,它不会搜索.properties文件,因此未建立完整的功能。我的.properties文件位于/src文件夹下。我该如何解决这个问题?

try {
    // Loads the constants.properties file
        InputStream constantPropFile = 
            ClassLoader.class.getResourceAsStream
 ("/account.properties");
        constantProp.load(constantPropFile);
    }  catch (IOException e) {
    // TODO Auto-generated catch block
        e.printStackTrace();
    }

0 个答案:

没有答案