My Project Setup
I have the following project setup:
\\program.jar \\images\\logo.png
In my code, I reference th
As Nelson mentioned, package them with your JAR (just copy them alongside your .class files), then you can find them via a simple this.getClass().getClassLoder().getResource("images/foo.png").
this.getClass().getClassLoder().getResource("images/foo.png")