我有一个小应用程序,我测试并打包到jar,我试图运行它,但我有错误。
这是我的项目结构:
src
-kie.template
----- ServerMain.java ==> Class with main
-kie.template.util
---- PropUtils.java
---- server.properties
target
-kietemplate.jar
---- lib
在main方法中,PropUtils类读取属性。
public class PropUtils {
private static final String PROPERTIES = "server.properties";
public static Properties load() {
Properties properties = new Properties();
InputStream is = null;
try {
properties.load(PropUtils.class.getResourceAsStream(PROPERTIES));
} catch (IOException e) {
e.printStackTrace();
} finally {
if (is!=null) try{is.close();}catch(IOException e){}
}
return properties;
}
}
}
当我直接运行ServerMain类时,它工作正常。但是在我将它打包到jar并运行之后,它显示错误:
java -cp lib -jar kietemplate.jar
Caused by: java.lang.NullPointerException
at java.util.Properties$LineReader.readLine(Properties.java:418)
at java.util.Properties.load0(Properties.java:337)
at java.util.Properties.load(Properties.java:325)
at au.org.jeenee.kie.template.util.PropUtils.load(PropUtils.java:26)
当我查看jar文件时,属性文件位于目录中。 jar tf kietemplate.jar
非常感谢任何帮助。
编辑: 我改变逻辑来读取属性:
Properties properties = new Properties();
InputStream is = null;
try {
File file = new File("server.properties");
is = new FileInputStream(file);
properties.load(new InputStreamReader(is));
} catch (IOException e) {
e.printStackTrace();
} finally {
if (is!=null) try{is.close();}catch(IOException e){}
}
它需要jar文件的父目录中的属性文件。
答案 0 :(得分:0)
您的代码在我的计算机上运行正常,无论是来自JAR还是文件系统。
该行为的一个可能原因是文件系统不区分大小写,但jar文件区分大小写。但我们真的无法从源代码中分辨出来。