Java Why aren't my images appearing in my Java application?

  • Thread starter Thread starter Nylex
  • Start date Start date
  • Tags Tags
    Images Java
AI Thread Summary
The discussion centers around issues with displaying images in a JPanel while working on a Java application. The user has confirmed that the image files exist in an "images" folder within the "divelog" directory, but the images are not appearing as expected. Suggestions include ensuring that the images folder is in the same directory as the Java class files and using absolute paths to troubleshoot potential working directory issues. It is noted that the working directory may not be what the user assumes, as it typically corresponds to where the Java interpreter is executed. The user encounters a NoClassDefFoundError when attempting to run the application from the command line, indicating a possible classpath issue. Other participants emphasize that images must be located in the same directory as the class files or require explicit paths if stored elsewhere. The conversation highlights common pitfalls in Java file handling and the importance of understanding the directory structure when working with resources.
Nylex
Messages
552
Reaction score
2
Hi, I'm working through the "Building an Application: Part 2: Introduction to Inheritance, Panels, and Layouts" on java.sun.com and the code I've written compiles fine, but the images that are supposed to appear in the JPanel aren't there.

Code:
jl = new JLabel("Java Technology Dive Log", new ImageIcon("images/diveflag.gif"), JLabel.CENTER);

and

Code:
diver = new JLabel("", new ImageIcon("images/diver.jpg"), JLabel.CENTER);

are where images are used.

The image files do exist. They're in a folder called "images", which itself is in a folder named "divelog". The whole code for the file is here, although obviously this class is used in another.

If anyone can help, thanks.
 
Last edited:
Technology news on Phys.org
Did you add those 3 lines to Welcome.java?

Code:
add(jl, BorderLayout.NORTH);
add(ta, BorderLayout.CENTER);
add(diver, BorderLayout.SOUTH);
 
Yep, I did.
 
Do you have your images folder and java .jar file in the same directory?
 
faust9 said:
Do you have your images folder and java .jar file in the same directory?

What .jar file?
 
I would use an absolute path to double check that is not a working directory problem. That would at least eliminate one possibility.
 
so-crates said:
I would use an absolute path to double check that is not a working directory problem. That would at least eliminate one possibility.

It works with an absolute path, so what else could be the problem?
 
Well there you go. Your working directory is not what you think it is !
 
Why's it not the current directory?!
 
  • #10
I believe its usually the directory in which the class file is located, though I could be wrong. Check the documentation on Sun's site: http://java.sun.com.
 
  • #11
Will do, thanks :smile:.
 
  • #12
Actually I think its the directory in which the interpreter is run. How are you running the interpreter?
 
  • #13
so-crates said:
Actually I think its the directory in which the interpreter is run. How are you running the interpreter?

I'm using BlueJ. I'll try from the command line and see if that makes any difference.

Edit: I can't run from the command line. I'm getting:

Exception in thread "main" java.lang.NoClassDefFoundError: DiveLog (wrong name:
divelog/DiveLog)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$100(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)

when I try "java DiveLog". The class name is DiveLog, so I don't know what the problem is. It works in BlueJ though :confused:.
 
Last edited:
  • #14
New to the forum here.

I'm having the same problem with the images not being displayed.

Has anyone figured out the cure?

Mike
 
  • #15
The interpreter's location is irrelevant because you can have work-related material in other directories.

A standard IDE for Java such as Eclipse can obviously be in a different location (such as c:\eclipse) and compile things fine from other directories because the compiler KNOWS where to find the standard libraries.

The thing with images is that they have to be in the /same/ folder as your classes, otherwise you have to explicitly define their entire paths.

If it's in a folder, then the folder has to be in the same folder as your main/test class.

If your main class as well as other classes are in let's say, C:\class

then the images should be in C:\class\images\<imageFile>
 

Similar threads

Replies
5
Views
2K
Replies
2
Views
2K
Replies
6
Views
7K
Replies
6
Views
3K
Replies
1
Views
2K
Replies
2
Views
3K
Replies
3
Views
1K
Back
Top