Forums Register Login

Couldn't find file "C:\...\Images\"

+Pie Number of slices to send: Send
Hello!

I am not sure if I am in the right spot or not. I am experimenting with modifying the sample code in the Java tutorials, specifically the RadioButtonDemo. Instead of their pictures of various critters, I thought I would comic strips saved in an images folder.

Here is where the folder (with the comic strips) is: C:\Documents and Settings\jenr\Images

When I compile and run it, here is the error I get:
Couldn't find file: C:\Documents and Settings\jenr\Images\jefferson.gif

I am thinking I am misunderstanding what this chunk of code is supposed to do:
/** Returns an ImageIcon, or null if the path was invalid. */
protected static ImageIcon createImageIcon(String path) {
java.net.URL imgURL = Main.class.getResource(path);
if (imgURL != null) {
return new ImageIcon(imgURL);
} else {
System.err.println("Couldn't find file: " + path);
return null;
}

Any help would be greatly appreciated. I am trying to tune up my skills in preparation for starting the process of getting certified in JAVA for my employer.

Thanks,
Jen
+Pie Number of slices to send: Send
The 'getResource' method has the ClassLoader look for the resource on the class path. If your 'Documents and Settings' folder is not be on the class path you can try building a URL with something like this:

The swing tutorial has a page on how to use icons that contains a lot of information about things like accessing and loading images, file structure, jar files, and use of the 'getResource' method.
Goodbye moon men. Hello tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 3402 times.
Similar Threads
loading image
Loading an Image
images in jar file
Escape sequences
Loading from a resource folder returns null
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 23:39:47.