I made a java application and bundled all classes in a jar file. When I run the project from eclipse, my application is running successfully. But when I try to run my
The files in jar files are treated as "Resources". you need to access them as a classpath resource, regular File access methods does not work there.
Try this:
final public ImageIcon iReport = (new ImageIcon(getClass().getResource("images/Report.png")));