码迷,mamicode.com
首页 > 系统相关 > 详细

【myeclipse】显示插入的图形文件存储位置

时间:2016-08-12 18:27:37      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:


把图片文件放入当前文件

package chapter15;


import java.awt.Graphics;
import java.awt.*;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;

@SuppressWarnings("serial")
public class DisplayImage extends JFrame{
	public DisplayImage (){
		add(new ImagePanel());
		
	}
	
	public static void main(String[] args) {
		JFrame frame = new DisplayImage();
		frame.setTitle("aaa");
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		frame.setLocationRelativeTo(null);
		frame.setSize(250, 180);
		frame.setVisible(true);
	}
}
@SuppressWarnings("serial")
class ImagePanel extends JPanel{
	private ImageIcon imageIcon = new ImageIcon("china.gif");
	private Image image = imageIcon.getImage();
	
	protected void paintComponent(Graphics g) {
		super.paintComponent(g);
		
		if(image!=null)
			g.drawImage(image, 0, 0, getWidth(), getHeight(), this);
	}
}


private ImageIcon imageIcon = new ImageIcon("china.gif");

技术分享



技术分享



如果存到当前目录的image文件下技术分享

代码要改成当前形式

private ImageIcon imageIcon = new ImageIcon("image/china.gif");

否则无法显示


【myeclipse】显示插入的图形文件存储位置

标签:

原文地址:http://blog.csdn.net/qq_24653023/article/details/52190752

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!