java:如何在JLabel中加载显示图片
publicclassimage{publicvoidimage(){ImageIconpic1=newImageIcon(image.class.getResource...
public class image{
public void image() {
ImageIcon pic1 = new ImageIcon(image.class.getResource("/image/1.gif")); //创建一个图片对象.
JLabel jLabel1 = new JLabel();
jLabel1.setIcon(pic1) ;
}
}
为何无法显示图片,而显示的是JLabel 的text属性里的文字,这样做不对吗,该怎么办?
谢谢
后直接用
JLabel jlabel1=new JLabel(pic1);
依然不行! 展开
public void image() {
ImageIcon pic1 = new ImageIcon(image.class.getResource("/image/1.gif")); //创建一个图片对象.
JLabel jLabel1 = new JLabel();
jLabel1.setIcon(pic1) ;
}
}
为何无法显示图片,而显示的是JLabel 的text属性里的文字,这样做不对吗,该怎么办?
谢谢
后直接用
JLabel jlabel1=new JLabel(pic1);
依然不行! 展开
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");
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");
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询