无法获取图像(新手)

时间:2012-07-26 01:55:39

标签: java image jframe

我无法获取要在J Frame中显示的图像。 我确信我把文件放在正确的位置并正确输入了名称。 这是代码

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Toolkit;
import java.io.File;
import java.net.URL;

import javax.swing.JFrame;


public class DrawImage extends JFrame {
    private Image image;
    public static void main(String[] args){
        new DrawImage();
    }
    public DrawImage(){
        super("DrawImage");
        setSize(600,600);
        setVisible(true);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        File appBase = new File("."); //current directory
        String path = appBase.getAbsolutePath();
        System.out.println(path);
        Toolkit tk = Toolkit.getDefaultToolkit();
        image= tk.getImage(getURL("Castle.jpg"));
    }
    private URL getURL(String filename){
        URL url=null;
        try{
            url=this.getClass().getResource(filename);
            //url=DrawImage.class.getResource(filename);
            //url=C:\hw/myProg/Graphics2d/Castle.jpg;
        }
        catch(Exception e){
            System.out.print("spleen:");
        }
        return url;
    }
        public void paint(Graphics g){
            Graphics2D g2d = (Graphics2D) g;
            g2d.setColor(Color.BLACK);
            g2d.fillRect(0, 0, getSize().width, getSize().height);
            g2d.drawImage(image, 0, 40, this);
        }

}

我得到的是带有黑色但没有图像的JFrame,这写到了cousle。

C:\hw\myProg\Graphics2d\.
Uncaught error fetching image:
java.lang.NullPointerException
    at sun.awt.image.URLImageSource.getConnection(Unknown Source)
    at sun.awt.image.URLImageSource.getDecoder(Unknown Source)
    at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
    at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
    at sun.awt.image.ImageFetcher.run(Unknown Source)

自然我的图像文件在C:\ hw \ myProg \ Graphics2d \ Castle.jpg那么我做错了什么? 编辑:好的我想通了你可以从这个方便的代码测试你的ide符合哪个文件夹。在eclipse中它位于bin文件夹中。

URL test = DrawImage.class.getResource("/");
        System.out.println(test);

1 个答案:

答案 0 :(得分:1)

从错误中,Castle.jpg不在类加载器类路径上下文中。如果图片不是应用程序中的Jar,您可以使用File对象生成URL,但我不认为这是您想要做的

你可以:

  • 确保您正在执行程序文件" C:\ hw \ myProg \ Graphics2d"。
  • Jar应用程序(连同它的资源)