I write a gui app , and use image files (gif) as icons. When I run the app in my IDE - the icons appear. When I run it from a jar - they fail (null pointer exception on the resource)
The package structure is as following:
code : src/main/java/com/my/app
resources : src/main/resources/com/my/app
I wrote this little example:
URL url ;
url = GuiUtils.class.getResource("/com/my/app/gui/fading_lines_blue_64x64.gif");
System.out.println("url: " + url);
url = GuiUtils.class.getResource("/resources/com/my/app/gui/fading_lines_blue_64x64.gif");
System.out.println("url: " + url);
When ran from the IDE:
url: file:/C:/Repositories/V8/trunk/MyApp/build/com/my/app/gui/fading_lines_blue_64x64.gif
url: null
When ran from the Jar:
url:null
url:jar:file:/C:/DevEnv/Projects/Viewer/testPicLoad.jar!/resources/com/cmy/app/gui/fading_lines_blue_64x64.gif
I solved it like this , but it's obviously not the right way to do it:
public static URL getResourceURL(String path) {
URL url = GuiUtils.class.getResource(path);
if (url == null) {
url = GuiUtils.class.getResource("/resources"+path);
}
return url;
}
Suggestions?
When ran from the Jarwhat you did here? – Jigar Joshi Feb 9 '11 at 11:00