代码供参考
public class Demo extends JFrame {
JLabel jl =new JLabel();
public Demo() {
jl =new JLabel(new ImageIcon("bg.jpg"));
this.add(jl);
this.setSize(300, 200);
this.setVisible(true);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public static void main(String[] args){
new Demo();
}
}