假设我有一个可执行 jar 文件的 MANIFEST.MF 的以下摘录:
Manifest-Version: 1.0
Main-Class: com.intersportleitner.skischule.gui.window.SkischulApplicationWindow
Class-Path: .
...
不应该有这样的目录结构:
Appdir
|- bla.jar (self-executable)
|- x.properties
|- y.properties
因为如果我尝试使用以下代码片段加载属性,我会得到一个 IOException: Stream closed in properties.load(stream):
Properties properties = new Properties();
InputStream istream=SkischulApplicationWindow.class.getClassLoader().getResourceAsStream("y.properties");
BufferedInputStream stream = new BufferedInputStream(istream);
properties.load(stream);
stream.close();
该异常有点误导,因为实际上 istream 为空(指出当我尝试调用 istream 的方法以进行测试时......),所以找不到属性文件,我不知道为什么它会失败,因为根据到Executable jar 将找不到它应该以这种方式工作的属性文件......