我在获取要显示在J框架中的图像时遇到了麻烦。
我确定我将文件放在正确的位置并正确输入了名称。
这是代码

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,并将其写入表亲。

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);

最佳答案

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

你可以:


确保从程序文件“ C:\ hw \ myProg \ Graphics2d”执行。
Jar应用程序(及其资源)

10-04 20:03