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
You need to get it from the classpath instead of from the local disk file system.
Assuming that images is actually a package and that this package is inside the same JAR as the current class, then do so:
images
final public ImageIcon iReport = new ImageIcon(getClass().getResource("/images/Report.png"));