My Project Setup
I have the following project setup:
\\program.jar \\images\\logo.png
In my code, I reference th
You should really include your resources in your JAR.
Failing that, you can parse the absolute path out of the Main class resource. Assuming your Main class is actually called "Main":
Main.class.getResource("Main.class").getPath();