Imagem no arquivo JAR

No meu projeto existem vários ícones e imagens (todos na pasta de origem do projeto), quando faço a exportação dos arquivos para o formato JAR, essas imagens não são lidas quando executo o arquivo criado. Alguem tem alguma sugestão…???

Falow
Brigaduuu…

The following code example shows how to retrieve images from a JAR file:

   // Get current classloader
   ClassLoader cl = this.getClass().getClassLoader();
   // Create icons
   Icon saveIcon  = new ImageIcon(cl.getResource("images/save.gif"));
   Icon cutIcon   = new ImageIcon(cl.getResource("images/cut.gif"));
   ...

The example assumes that the following entries exist in one of the JAR files for the application:

images/save.gif