java界面背景图片显示不了,
jlArray[4].setBounds(10,280,300,25);//设置用于显示登录状态的标签的大小位置jp.add(jlArray[4]);//将标签添加进JP...
jlArray[4].setBounds(10,280,300,25);//设置用于显示登录状态的标签的大小位置
jp.add(jlArray[4]); //将标签添加进JPanel容器
this.add(jp);
Image image=new ImageIcon("ico.png").getImage();//对logo图片进行初始化
this.setIconImage(image);
//设置窗体的大小位置及可见性
this.setTitle("登录");
this.setResizable(false);
this.setBounds(100,100,400,350);
this.setVisible(true);
}
jt.setEditable(false);//设置该树中节点是可编辑的
this.add(jsplr);//将包含树的滚动窗口添加进窗体
jsplr.setLeftComponent(jt);//将包含树的滚动窗口添加进左边的子窗口
jp.setBounds(200,50,600,500);//为jp设置大小位置并添加进右边的子窗口
jsplr.setRightComponent(jp);
jsplr.setDividerLocation(200);//设置分隔条的初始位置
jsplr.setDividerSize(4);//设置分隔条的宽度
jlRoot.setFont(new Font("Courier",Font.PLAIN,30));
jlRoot.setHorizontalAlignment(JLabel.CENTER);
jlRoot.setVerticalAlignment(JLabel.CENTER);
//设置窗体的关闭动作,标题,大小,位置及可见性
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Image image=new ImageIcon("tsgl.png").getImage();
this.setIconImage(image);
this.setTitle("图书管理系统");
//设置窗体首次出现的大小和位置--自动居中
在线等,谢谢大神 展开
jp.add(jlArray[4]); //将标签添加进JPanel容器
this.add(jp);
Image image=new ImageIcon("ico.png").getImage();//对logo图片进行初始化
this.setIconImage(image);
//设置窗体的大小位置及可见性
this.setTitle("登录");
this.setResizable(false);
this.setBounds(100,100,400,350);
this.setVisible(true);
}
jt.setEditable(false);//设置该树中节点是可编辑的
this.add(jsplr);//将包含树的滚动窗口添加进窗体
jsplr.setLeftComponent(jt);//将包含树的滚动窗口添加进左边的子窗口
jp.setBounds(200,50,600,500);//为jp设置大小位置并添加进右边的子窗口
jsplr.setRightComponent(jp);
jsplr.setDividerLocation(200);//设置分隔条的初始位置
jsplr.setDividerSize(4);//设置分隔条的宽度
jlRoot.setFont(new Font("Courier",Font.PLAIN,30));
jlRoot.setHorizontalAlignment(JLabel.CENTER);
jlRoot.setVerticalAlignment(JLabel.CENTER);
//设置窗体的关闭动作,标题,大小,位置及可见性
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Image image=new ImageIcon("tsgl.png").getImage();
this.setIconImage(image);
this.setTitle("图书管理系统");
//设置窗体首次出现的大小和位置--自动居中
在线等,谢谢大神 展开
3个回答
展开全部
JPanel jPanelToolBar = new JPanel(new BorderLayout()){
public void paintComponent(Graphics g) {
super.paintComponent(g);
Image image = paintPicture("1_03");
if (image != null) {
int height = image.getHeight(this);
int width = image.getWidth(this);
if (height != -1 && height > getHeight())
height = getHeight();
if (width != -1 && width > getWidth())
width = getWidth();
g.drawImage(image, 0, 0, getSize().width, getSize().height, this);
}
}
};
private Image paintPicture(String picName){
String path = pathimage+picName+“.png”;//这是图片路径
Image image = null;
try {
image = ImageIO.read(new File(path));
} catch (IOException e) {
log.error(e);
}
return image;
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
Image image = paintPicture("1_03");
if (image != null) {
int height = image.getHeight(this);
int width = image.getWidth(this);
if (height != -1 && height > getHeight())
height = getHeight();
if (width != -1 && width > getWidth())
width = getWidth();
g.drawImage(image, 0, 0, getSize().width, getSize().height, this);
}
}
};
private Image paintPicture(String picName){
String path = pathimage+picName+“.png”;//这是图片路径
Image image = null;
try {
image = ImageIO.read(new File(path));
} catch (IOException e) {
log.error(e);
}
return image;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询