JLabel的对象有一个setImage方法可以插入图片
JLabel pitLabel=new JLabel();ImageIcon img=new ImageIcon("f:/pit.jpg");//创建图片对象pitLabel.setIcon(img);panel.add(pitLabel);//搞定