慕尼黑8549860
可以..把在JLabel中加入图片.然后当成JApplet的背景..JButton放在JApplet上就行//###################################import java.awt.FlowLayout;import javax.swing.*;public class Test extends JApplet{public Test(){JPanel jp=(JPanel)this.getContentPane(); //从JFrame 里面创建一个JPaneljp.setOpaque(false); //JPanel 透明模式ImageIcon img = new ImageIcon("c://Sunset.jpg"); //创建一个图片路径JLabel background = new JLabel(img); //创建个带背景图片的JLabelthis.getLayeredPane().add(background,new Integer(Integer.MIN_VALUE));background.setBounds(0, 0, img.getIconWidth(), img.getIconHeight());jp.setLayout(new FlowLayout());JButton jb=new JButton("我是按钮");jp.add(jb);}}