I came here searching for the same answer, but based on the top answers, I came up with an easier code. Hope this will help future searches.
Icon icon = new ImageIcon("src/path.gif");
try {
mainframe.setContentPane(new JLabel(icon));
} catch (Exception e) {
}