Hey guys

I am calling two images using the code below, the first image called shows up when run, and when compiled into a executable jar. The other image shows up when run in eclipse but not when compiled into an executable jar:

Here is the code:

image = Toolkit.getDefaultToolkit().getImage(this.getClass().getResource("myPicture.png"));

Why is this happening?

I presume both pix are in the jar? Check the file name case - they are case-sensitive in jars but not in the windows file system.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.