java:如何在JLabel中加载显示图片

2024-12-14 19:31:32
推荐回答(1个)
回答1:

楼主试试在
ImageIcon pic1 = new ImageIcon(image.class.getResource("/image/1.gif"));
后直接用
JLabel jlabel1=new JLabel(pic1);
应该就行了

那再试试把ImageIcon pic1 = new ImageIcon(image.class.getResource("/image/1.gif"));
这句话改为ImageIcon pic1 = new ImageIcon("xxxx\\1.gif");
xxx是你的gif的路径,注意用\\来分隔。比如在C盘的ABC目录下,就写ImageIcon pic1 = new ImageIcon("C:\\ABC\\1.gif");