リソースをロードするときは、次の違いに注意してください。
getClass().getClassLoader().getResource("com/myorg/foo.jpg") //relative path
そして
getClass().getResource("/com/myorg/foo.jpg")); //note the slash at the beginning
おそらく、この混乱がリソースのロード時に問題のほとんどを引き起こしています。
また、画像をロードしているときは使いやすいですgetResourceAsStream()
:
BufferedImage image = ImageIO.read(getClass().getResourceAsStream("/com/myorg/foo.jpg"));
JARアーカイブから(非イメージ)ファイルを本当にロードする必要がある場合は、次のことを試してみてください。
File file = null;
String resource = "/com/myorg/foo.xml";
URL res = getClass().getResource(resource);
if (res.getProtocol().equals("jar")) {
try {
InputStream input = getClass().getResourceAsStream(resource);
file = File.createTempFile("tempfile", ".tmp");
OutputStream out = new FileOutputStream(file);
int read;
byte[] bytes = new byte[1024];
while ((read = input.read(bytes)) != -1) {
out.write(bytes, 0, read);
}
out.close();
file.deleteOnExit();
} catch (IOException ex) {
Exceptions.printStackTrace(ex);
}
} else {
//this will probably work in your IDE, but not from a JAR
file = new File(res.getFile());
}
if (file != null && !file.exists()) {
throw new RuntimeException("Error: File " + file + " not found!");
}