所以我是Java的新手,从YouTube上的视频中学习一些基础知识,我正在学习制作GUI/Window,目前我正在尝试显示iamges,但我不确定代码是否错误/旧或图像不在正确的位置/位置。这是我到目前为止写的。帮助将不胜感激。请,谢谢。
import java.awt.*;
import javax.swing.*;
public class FirstGUI extends JFrame {
private static Object out;
private JLabel label;
private JButton button;
private JTextField textfield;
private ImageIcon image1;
private JLabel label1;
private ImageIcon image2;
private JLabel label2;
public FirstGUI() {
setLayout (new FlowLayout());
label = new JLabel("Hi, I'm a label!");
add(label);
textfield = new JTextField(15);
add(textfield);
button = new JButton("Click me!");
add(button);
button = new JButton("No, CLICK ME!!");
add(button);
label = new JLabel("This is the end of the program?");
add(label);
image1 = new ImageIcon(getClass().getResource("Apiary.png"));
label1 = new JLabel(image1);
image2 = new ImageIcon(getClass().getResource("bee.png"));
label2 = new JLabel(image2);
}
public static void main(String[] args) {
FirstGUI gui = new FirstGUI();
gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//* gui.setSize(400, 400);
gui.setVisible(true);
gui.setTitle("Hello World");
gui.pack();
}
}
我在错误中得到的是:
线程"main"中的异常 java.lang.NullPointerException
在javax.swing.ImageIcon。(来源不明)
在第一图形用户界面。(第一.java:39)
at FirstGUI.main(FirstGUI.java:50)
首先,您不会将标签添加到框架中,因此即使执行,它也不会显示图像图标。所以不要忘记将标签添加到框架中:
add(label1);
add(label2);
其次,我尝试了您的代码,它对我来说效果很好,它只打印了您在我没有将图像图标导入我正在使用的包时提到的错误。为此,您需要执行以下操作:
右键单击 src 包>导入>常规 -> 文件系统,然后单击next
并选择包含图像的目录,单击"确定",然后添加在代码中指定的图像。