My Project Setup
I have the following project setup:
\\program.jar \\images\\logo.png
In my code, I reference th
You need to add a parameter which describes your class path. Should look something like
java -cp c:\projects\program_dir\bin -jar program.jar
this will put your jar and image on the class path and it will load successfully.