1 | initial version |
No idea if this can help you out, but I have found some code on the internet, which seems to help you get resources from a jar file.
Toolkit tk = Toolkit.getDefaultToolkit();
URL url = getClass().getResource("path/to/img.png");
Image img = tk.createImage(url);
tk.prepareImage(img, -1, -1, null);
Found it on this link: