Adicionando imagem no JApplet

ImageIcon icon= new ImageIcon("a.gif");
JLabel jLabel1=new JLabel(icon);
jLabel1.setVisible(true);
card1.add(jLabel1);

Sou iniciante em Java e estou enfrentando um problema para adicionar imagem em um painel no applet. Minha imagem está na mesma pasta. Meu applet fica visível sem problemas, mas apenas a imagem não é exibid

questionAnswers(1)

yourAnswerToTheQuestion