对于学校项目,我需要创建一个GUI并使用它做一些事情,其中一件事就是在我的ImageIcon
中添加JFrame
。
public Frame(Pet pet) {
setTitle("Stay Alive!");
setResizable(false);
setSize(400, 550);
ImageIcon icon = pet.getImageIcon();
JLabel label = new JLabel();
label.setIcon(icon);
add(label);
}
`
这仍然显示空白。
答案 0 :(得分:0)
通过设置JLabel将图像添加到Icon的正确方法是在此表单上
ImageIcon icon = new ImageIcon(animal.getImg());
JLabel thumb = new JLabel();
thumb.setIcon(icon);
和访问图像的网址类似于
"C:\\Users\\Archie King\\Desktop\\School\\Computer Science\\cat.png";