Eclipse exported Runnable JAR not showing images

76,287

Solution 1

The problem was I had this project in my Windows profile... that had an "!" in it... (DeNitE! -> was the name of my Windows profile)

As soon as I changed it to DeNitE (without the !) it worked fine...

Solution 2

Works fine for me. Check what you may have different.

Example 1: (resources in src)

Steps:

  1. File Structure

    enter image description here

  2. Code

    package com.stackoverflow.test;
    
    import java.net.URL;
    import javax.swing.*;  // Wild carded for brevity. 
                           // Actual code imports single classes
    public class Main {
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable(){
                public void run() {
                    URL url = Main.class.getResource(
                                         "/resources/stackoverflow.png");
                    ImageIcon icon = new ImageIcon(url);
                    JFrame frame = new JFrame();
                    frame.add(new JLabel(icon));
                    frame.pack();
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
                }
            });
        }
    }
    
  3. [Right click on project] → [Export] → [Runnable Jar File] → [Set up Launch config]

    enter image description here

  4. Profit

    enter image description here

FYI, the same setup runs in eclipse just fine also


Example 2: (resources not in src - but in project)

Steps:

  1. File Structure (notice resources looks like a plain folder)

    enter image description here

  2. What we have to do now, is put the resources on the build path. What this does is put everything in the folder (excluding the folder itself) on the classpath

    • Right click on the project and go to [Build Path] → [Configure Build Path]

      enter image description here

    • From the [Sources] tab in the dialog, select [Add Folder] and in the new dialog, select the [resources] folder

      enter image description here

    • Now the contents of the resources folder is in the build path (notice the little package in the folder now

      enter image description here

  3. New code no longer uses the resources prefix for the path

    URL url = Main.class.getResource("/stackoverflow.png");
    
  4. Same as Step 3 and 4 from above, and profit!


UPDATE

Setting up Launch Configuration

Generally, once you run the class (i.e. Right click on class and Run as Java Application), a run configuration will be set up. You will need this to set as the launching point in the manifest. But here's how to do it manually.

Steps:

  1. [Right Click Project] → [Properties] → [Run/Debug Settings]

    enter image description here You can see that I already have a run configruation (that is implicitly set from simply running the class). But to create a new one, select [New] → [Java Application]

  2. Create a name for run configuration and browse or type an main launching class. In my case its the com.stackoverflow.test.Main class

    enter image description here

  3. Now when you export as shown in the above example, you select the run configuration

    enter image description here

  4. Run the jar like above.


EDIT

Result to Check for

Manifest:

Manifest-Version: 1.0
Rsrc-Class-Path: ./
Class-Path: .
Rsrc-Main-Class: com.stackoverflow.test.Main
Main-Class: org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader

Extracted jar:

enter image description here

Solution 3

I found that when you changed:

Package required libraries into generated jar

to

Extract required libraries into generated jar

in the Set up Launch config it worked for me.

Extract Required Libraries Button

Solution 4

Another work around is if you put your resource file, an your .jar file in the same location, it should work. The only drawback is you have to have the resources with the jar file at all times.

If that's not an issue you can do it this way.

Solution 5

For creating a runnable JAR file from Eclipse we may refer to the article "Creating Runnable Jars in Eclipse (or other IDE...or by hand):" (https://www.cefns.nau.edu/~edo/Classes/CS477_WWW/Docs/RunnableJarsinEclipse.html), it mentioned that we need do four things as

  1. Make sure create a package for our code, not just create a project in Eclipse
  2. Create the sub-pakage (subfolder) for our resource files under the main package of our code (note that the sub-package is under main package, is not only in the project)
  3. get all file references from getResource() (getting the URL reference)
  4. Export of files as a runnable JAR in Eclipse (File -> Export... -> select Runnable JAR files -> next -> ...)

But for image file in the example code of above article it only creates the ImageIcon, it does not create the SWT Image, and there are many questions in the Internet for how to get SWT Image from URL or how to convert ImageIcon to SWT Image, below is the example code for getting the SWT Image from URL,

Image imgSWT=null;  // Image class is the SWT Image class
ImageDescriptor imgDesc=null;
java.net.URL imgURL = YourClassName.class.getResource("path/image_filename");

if (imgURL != null) {
    imgDesc = ImageDescriptor.createFromURL(imgURL);
    imgSWT = imgDesc.createImage();
}
Share:
76,287
DeNitE Appz
Author by

DeNitE Appz

Updated on August 25, 2020

Comments

  • DeNitE Appz
    DeNitE Appz over 3 years

    My images will not load when running a JAR file exported from Eclipse.

    I have the images in a resources class package. I've tried a images source folder as well with no luck.

    Works perfectly when loaded from Eclipse. The images are in the exported JAR file, so they're exporting fine.

    I've tried:

    label.setIcon(new ImageIcon(MainFrame.class.getResource("/resources/header.jpg")));
    

    I've also tried:

    URL url = getClass().getResource("/resources/header.jpg");
    Image image = Toolkit.getDefaultToolkit().getImage(url);
    label.setIcon(new ImageIcon(image));
    

    And:

    try
    {
        label.setIcon(new  ImageIcon(ImageIO.read(getClass().getResource("/resources/header.jpg"))));
    }
    catch (IOException e1)
    {
        e1.printStackTrace();
    }
    

    Any suggestions?

  • Talib
    Talib over 7 years
    @peeskillet can you answer my question pls ? stackoverflow.com/questions/38685537/…
  • exexzian
    exexzian over 7 years
    @peeskillet saved my day. I was exploring my codes for possible #bug. but realized this was the problem
  • Tastybrownies
    Tastybrownies over 7 years
    No, this is false. Just tested this 5 minutes ago.
  • JorgeeFG
    JorgeeFG almost 5 years
    I've tried every solution you posted and in the end the one that worked was using this Launcher.class.getResource() where Launcher is my main.