Hi,
I am trying to load icons from a jar file. I have both tried to load it from classes within the jar file as well as classes outside the jar file.
outside of the jarfile - returned a null exception
java.net.URL imageURL = LoadHTMLExample.class.getClassLoader()
.getResource("icons/mouse.png");
in side of the jar file in the LoadHTMLExample
java.net.URL imageURL = this.getClass().getClassLoader()
.getResource("icons/mouse.png");
get the same error.
I have also tried variations of "icons", "/icons" "icons/" "/icons/mouse.png" "icons/mouse.png"
nothing seems to work any idea
the icon is in the jar file
jar
--icons --- {all the images}
--com.blah.blah