如何在java中导入jpg图像?

时间:2015-03-25 22:30:09

标签: java image jpanel

我想用java导入图像,我不知道该怎么做。我需要有人告诉我如何。我想导入一个我在谷歌上找到的jpg图像,我尝试了很多示例代码在线,但它们都不适合我。我用来编写代码的应用程序是使用eclipse。 P.S我用的是mac。

1 个答案:

答案 0 :(得分:0)

鉴于您在问题中标记了JPanel,我将假设您正在使用swing。您可以将图像添加到JLabel,如下所示:

import javax.swing.JPanel;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
import java.net.URL;

// inside your class constructor/method
JPanel panel = new JPanel();
ImageIcon img = new ImageIcon(new URL("http://image...."));
JLabel jlPic = new JLabel(img);

panel.add(jlPic);

如果您的图片位于计算机上而不是网址上,则只需将String路径传递给ImageIcon的构造函数即可。