如何获得图像路径?

时间:2016-11-29 16:50:08

标签: java image file user-interface import

我想从我的工作区获取图像,并在GUI中显示它。 所以我所做的是将图像放在工作区中:Image

然后,我做到了:

        File coughfile = new File(cough.jpg);

但我得到一个错误;咳嗽无法解决为一种类型。 如何导入它?

1 个答案:

答案 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);