当前位置: 代码迷 >> J2SE >> 小弟我自己写了JPanel中paint方法,但是没有显示图片啊求大神请问
  详细解决方案

小弟我自己写了JPanel中paint方法,但是没有显示图片啊求大神请问

热度:229   发布时间:2013-02-25 00:00:00.0
我自己写了JPanel中paint方法,但是没有显示图片啊……求大神请教
代码如下:
import javax.swing.*;
import java.awt.*;
import java.awt.image.*;

public class Pic extends JFrame
{
private JButton
b1 = new JButton("button1"),
b2 = new JButton("button2"),
b3 = new JButton("button3"),
b4 = new JButton("button4"),
b6 = new JButton("button6"),
b5 = new JButton("button5");
private Panel panel1 = new Panel();
private JPanel panel2 = new JPanel();

public Pic()
{
this.setTitle("图像处理");
this.setSize(900, 700);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

panel1.img = Toolkit.getDefaultToolkit().getImage(Panel.class.getResource("meishi.jpg"));
panel2.add(b1);
panel2.add(b2);
panel2.add(b3);
panel2.add(b4);
panel2.add(b5);
panel2.add(b6);
panel1.repaint();
panel1.setBackground(Color.darkGray);
panel2.setBackground(Color.CYAN);
this.add(panel1,BorderLayout.CENTER);
this.add(panel2,BorderLayout.SOUTH);

}

public static void main(String[] args) 
{
Pic pic = new Pic();
}
}

class Panel extends JPanel
{
Image img = null;
public void paint(Graphics g)
{
super.paint(g);
g.drawImage(img,0,0,300,200,this);
}
}

------解决方案--------------------------------------------------------
探讨

你的图片"meishi.jpg"在什么位置放着,如果是用ECLIPSE做的话,需要放到SRC根目录下的

------解决方案--------------------------------------------------------
探讨

我用的是eclipse,不过图片我放在根目录下,貌似没用引用:

你的图片"meishi.jpg"在什么位置放着,如果是用ECLIPSE做的话,需要放到SRC根目录下的

------解决方案--------------------------------------------------------
我给你留过代码了,不能用吗
  相关解决方案