属性文件存在?

时间:2017-04-06 16:08:38

标签: java jar properties

Q-Properties文件存在??

如何在jar文件中测试属性文件(test.properties)的存在。这是我的代码

            JarFile jarfile=new JarFile("C:/path to jar file/file.jar");
            InputStream is=jarfile.getInputStream(jarfile.getEntry("test.properties"));
            Properties properties=new Properties();
            properties.load(is);
            if(properties.isEmpty()){ System.out.printn("file not exist");

0 个答案:

没有答案