Hola a todos!!!
A modo sugerencia os recomiendo que creeis iconos de la siguiente manera:
Código PHP:
ImageIcon imagen = new ImageIcon( getClass().getResource("F:\\Borrar\\star0.gif"));
JLabel etiq3 = new JLabel( "Etiqueta3", imagen,SwingConstants.LEADING );
de forma que si empaquetís las imagenes dentro de vuestros paquetes de código quedaría:
Código PHP:
ImageIcon imagen = new ImageIcon( getClass().getResource("/com/miEmpresa/proyecto/resources/imagen/star0.gif"));
Nota: Esto último también sirve para rutas absolutas.
Ojo: Cuando se encapsulan imagenes en .jar las rutas son case sensitive al igual que en linux.
Saludetes,

kripton