网上找的很多java加背景的代码在eclipse运行后,都没办法出现背景图片,这是怎么回事?
网上找的其中一个代码~~~求分析原因packagetest;importjavax.swing.*;publicclassTestBackgroundColorexten...
网上找的其中一个代码~~~求分析原因
package test;
import javax.swing.*;
public class TestBackgroundColor extends JFrame {
TestBackgroundColor(){
JPanel p=new JPanel();
JLabel l=new JLabel();
Icon icon=new ImageIcon("src\test\background.jpg"); //在此直接创建对象
l.setIcon(icon);
l.setBounds(0, 0, icon.getIconWidth(),icon.getIconHeight());
p.add(l,new Integer(Integer.MIN_VALUE));
getContentPane().add(p);
pack(); //窗口适应组件大小
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //用来关闭窗口的
setVisible(true);
}
public static void main(String[] a){
new TestBackgroundColor();
}
} 展开
package test;
import javax.swing.*;
public class TestBackgroundColor extends JFrame {
TestBackgroundColor(){
JPanel p=new JPanel();
JLabel l=new JLabel();
Icon icon=new ImageIcon("src\test\background.jpg"); //在此直接创建对象
l.setIcon(icon);
l.setBounds(0, 0, icon.getIconWidth(),icon.getIconHeight());
p.add(l,new Integer(Integer.MIN_VALUE));
getContentPane().add(p);
pack(); //窗口适应组件大小
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //用来关闭窗口的
setVisible(true);
}
public static void main(String[] a){
new TestBackgroundColor();
}
} 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
应该是你图片路径的问题,你把WebRoot下新建一个文件夹,把图片都放进去,试试
更多追问追答
追问
路径是在这里 C:\Users\Administrator\workspace\test\src\jes
这个有问题吗?
还有为什么imagelcon里面不能放全路径?
追答
final JLabel label = new JLabel();
String path=System.getProperty("user.dir")+"\\WebRoot\\Img\\";
ImageIcon icon = new ImageIcon(path+"backImg.jpg");
label.setIcon(icon);
可以放路径,像这样是没问题的,
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询