谁能告诉我为什么(通过给我代码)用 JLabel Hi 替换图像 Dots 以便 Dots 出现。我现在得到的只是“嗨”这个词。
public class Memory extends JPanel {
ImageIcon Dots = new ImageIcon("Dots.jpg");
private JLabel Hi = new JLabel("Hi");
//ImageIcon Dots = new ImageIcon(this.getClass().getResource("Dots.jpg"));
Memory(){
Hi.setIcon(Dots);
Hi.setPreferredSize(new Dimension(100,100));
this.add(Hi);
}
}