Steps to create a signed applet

Posted by {"name"=>"Palash Ray", "email"=>"paawak@gmail.com", "url"=>"https://www.linkedin.com/in/palash-ray/"} on March 07, 2010 · 1 min read

Many times while working with Applets, you need a signed jar to circumvent the security restrictions placed on an unsigned applet. Here are three simple steps of creating a self-signed applet:
keytool -genkey
keytool -selfcert
jarsigner myapplet.jar mykey



Further reading:
http://www-personal.umich.edu/~lsiden/tutorials/signed-applet/signed-applet.html
http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html