My images will not load when running a JAR file exported from Eclipse.
I have the images in a resources class package. I\'ve tried a images source folder as well wit
Two Simple steps:
1 - Add the folder to Build Path;
2 - Use this:
InputStream url = this.getClass().getResourceAsStream("/load04.gif"); myImageView.setImage(new Image(url));