我尝试将来自互联网的背景图片添加到我的JPanel
,但是只有添加JFrame
背景的来源,并且没有添加JPanel
背景的任何来源。请帮助。
我也试过了图片image= ImageIO.read(new File("resources/2.png"));
,但仍然失败了。
我的Jpanel代码:
contentPane = new JPanel();
contentPane.setBackground(new Color(32, 178, 170));
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);;
答案 0 :(得分:1)
使用Jlabel
并向其添加图片。像这样:
jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/yourImage.jpg")));
并在面板上添加标签。