I have a problem with my code, I'm farelly new to java programming but the thing is that I want to set a bg picture but the code that I use disapears everything else that I've put in the JFrame..
panel.setSize(950, 600);
panel.setTitle("Nuevo Usuario Otto's");
panel.setResizable(false);
panel.setLocationRelativeTo(null);
try {
panel.setContentPane(new JLabel(new ImageIcon(ImageIO.read(new File("C:\\CELLES_PROYECTO\\darkTrees.jpg")))));
} catch (IOException e) {
e.printStackTrace();
}
panel.setResizable(false);
panel.pack();
panel.setVisible(true);