I pulled this directly from the "How to Use
Icons" portion of the Swing tutorial:<br><br>ImageIcon
icon = null;<br>URL iconURL =
ClassLoader.getSystemResource("images/middle.gif");<br>if (iconURL != null)
{<br> icon = new
ImageIcon(iconURL, "an icon");<br>}<br><br>This should work because
any JARs loaded through Java Web Start should be part
of the classpath (as far as I understand
it).