开发者

Images are not displaying in jar but displaying in compiler?

I know, I know, this has been asked before. But every resource I've looked at uses IconImages while I just have plain Images.

Is there a different solution? Please help as I've been stuck researching and trying to figure this out for days now with no progress.

Image Floor = Toolkit.getDefaultToolkit().getImage("Floor.PNG");

EDIT: If I was to make sure the jar wouldn't compress and I created a seperate directory 开发者_运维技巧in the jar for images and put the correct file path, would this code work?


Toolkit#getImage(String s) looks for a file and likely your image is in the Jar and is now a resource not a file. Look to using resources for this.

Note that ImageIO.read(...) can accept an InputStream parameter the Class class has a method, getResourceAsStream(...) which can put the resource into a Stream that ImageIO can read. Give that a try.

Also, are you getting any error messages when you try what you're doing?


Make sure you know what your current directory is, and how it relates to the position of the files in your jar.

Here's how I would handle it.

1) Require there to be a file called "images.txt" in the directory with your jar (or bundle it into the jar.)
2) Make a file called "images.txt" with a format like `FLOOR:C:\\images\\floor.png`
3) Load this file into memory on load.
4) Load your images based on the entries in the file

This will give you the advantage of changing your images without changing your code if it's defined outside the jar :)

It's not loading because you're not putting the path to the images in the declaration. It expects the images to be wherever the jar is (notice there's no directories there)

You need to offload the definition of the file names to a file, or at the very least guarantee the relative position of the files.

Another good option is to put the images in the jar itself, say in an img directory, and reference them there. But then changes to the images require a new jar, which may not be desired for development purposes.


The getImage call is looking in the file system working directory, not inside the Jar file. This is why the jar file loads the images successfully when they are placed in the same directory outside the jar file. If the images are bundled in the jar file, they are no longer file system files to be accessed, but rather Jar file resources. There is a different way to load these, but sorry, I don't know it off the top of my head.


Check the extension of files. I had this problem because the extension was "PNG", when I changed it to "png", everything was ok.


You can't expect a JAR file to magically know where your images are. If you put a JAR file alone on the desktop, it's going to look for the files on the desktop! The code

getImage("Floor.png")

searches the current directory of the JAR (or source project) by default and you'd expect that if the JAR was in the same directory, it would work. If the JAR is on the desktop how does it know where Floor.png is? Of course, you can specify a hard-coded path

getImage("C:\Some Folder Path\Floor.png")

but then Floor.png has to be in C:\Some Folder Path\ for the JAR to work properly.

It sounds like what you really want to do is keep the images in the JAR file (which acts like a ZIP file). The tutorial on doing that is here:

http://download.oracle.com/javase/tutorial/uiswing/components/icon.html#getresource


And I know for ImageIcon you use: new javax.swing.ImageIcon(getClass().getResource("myimage.jpeg") but I have not found anything similar for plain Image.

<head-desk /> You should really get into reading the JavaDocs. Otherwise you are 'coding by magic'. Which generally won't work.

URL urlToImage = getClass().getResource("myimage.jpeg");
// If you need to support Java 1.3
Image image = Toolkit.getDefaultToolKit().getImage(urlToImage);
// If your users have dragged their JRE into this millennium
BufferedImage bufferedImage = ImageIO.read(urlToImage);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜