为什么找不到我的图像?

时间:2015-11-10 13:38:31

标签: java image jframe

我正在尝试使用简单的图像制作一个简单的JFrame ...而且因为它很简单,所以它不起作用^^
查看截图左侧,图像存在并位于res / textures /文件夹中 enter image description here 你知道为什么它找不到我的形象吗? 我认为它找不到图像,因为这是我的代码的结果: enter image description here 这是我的主要代码:

    this.jframe = new JFrame();
    this.jframe.setSize(800, 200);
    this.jframe.setUndecorated(true);
    this.jframe.setBackground(new Color(1.0f, 1.0f, 1.0f, 0f));
    this.jframe.setLocationRelativeTo(null);
    this.jframe.setContentPane(new LoaderJFrame());
    this.jframe.setVisible(true);

1 个答案:

答案 0 :(得分:0)

工作!我只需要在我的LoaderJFrame类中更改这一行:

public void LoaderJFrame(Graphics g)

通过

public void paintComponent(Graphics g)

谢谢大家:D