Whenever I try to add this image all I get is a blank jFrame. I am hoping some one can tell me what I am doing wrong. Also I have done a system.out.println on the image and it is getting loaded.
BufferedImage myPicture = ImageIO.read(getClass().getResourceAsStream("image.jpg"));
javax.swing.JLabel jLabel2 = new JLabel(new ImageIcon(myPicture));
jLabel1.add(jLabel2);
jLabel1.repaint();
ref:http://www.java2s.com/Code/Java/Swing-JFC/LabelwithImage.htm
note: also check the image location path is correct