# One common way to get in trouble is to use absolute URLs in your unsigned Applet. The Applet will then work on one website only, or locally only. Instead, use a relative URL and convert it to an absolute one like this:
import java.net.URL;
// ...
URL url = new URL( absoluteOrRelativeUrlString );
if ( url.getProtocol().length() == 0 )
{
// convert relative URL to absolute
url = new URL ( getDocumentBase(), url.getPath() );
}
# Watch out for this one. Sometime when you test your Applets locally they work, but when you use them on the web they fail with AccessControlException. Remember, Applets are not supposed to read files, though you can do an AppletContext. showDocument. You can however read resources in the jar file.
Cellulite