尝试从我的包中加载图片时出现NullPointerException

时间:2015-10-25 23:53:16

标签: image nullpointerexception

你好我在尝试查找我的包或文件夹中的照片时,我一直得到一个空指针异常我已经做了一个测试程序,因为我需要知道为什么它这样做的家庭作业并且不希望有任何主要帮助。这是我的代码。

import java.awt.*;
import javax.swing.*;

public class ImageTutorial extends JFrame{
private ImageIcon image1;
private JLabel label1;

ImageTutorial(){
    setLayout(new FlowLayout());

    ImageIcon image1 = new ImageIcon(getClass().getResource("astros.png"));
    label1 = new JLabel(image1);
    add(label1);


}
public static void main(String[] args) {
    ImageTutorial gui = new ImageTutorial();
    gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    gui.setVisible(true);
    gui.pack();
    gui.setTitle("Image Program");

}

0 个答案:

没有答案