我想从我的工作区获取图像,并在GUI中显示它。 所以我所做的是将图像放在工作区中:Image
然后,我做到了:
File coughfile = new File(cough.jpg);
但我得到一个错误;咳嗽无法解决为一种类型。 如何导入它?
答案 0 :(得分:0)
ImageIcon yourImage = new ImageIcon("C:/path/to/your/file/cough.jpg");
JLabel yourLabel = new JLabel();
yourLabel.setLocation(x,y);
yourLabel.setSize(width, heigh);
yourLabel.setIcon(yourImage);
yourFrame.add(yourLabel);