I have been browsing Stackoverflow all day looking for how to do this and I have not been successful yet
I am packaging a quick game I made into a executable jar bu
Files in a Jar are not files in the sense of a file on disk. They are simply a (possibly) compressed stream of bytes.
Java makes it easy to extract these "resources" from Jar files through the use of the ClassLoader
background = ImageIO.read(getClass().getResource("/wood.jpeg"));
Should work...
This will return a URL
which ImageIO
can use to load the resource.
You could also have a read of
And I could list some more. So, yeah, it gets asked a lot ;)
Try using Constructing Runnable Jar
using the Eclipse.
R_Click on the Project in the Package Explorer --->
Export ---> Runnable JAR file --->
Select the option of Package required libraries into generated JAR