如何在Java中添加背景图片

你可以创建一个新的面板,放入带有图片的JLabel并填充它。

JPanel jp = new JPanel();//创建新面板

jp . set layout(new FlowLayout());//设置面板布局

ImageIcon ii =新的ImageIcon(getClass()。get resource("/Picture/I . jpg ");

JLabel up picture = new JLabel(ii);//将JLabel添加到面板

this . set visible(true);