tags:

views:

13

answers:

1

I am using an applet and I don't want to sign it right now so how do I disable the security manager from the applet viewer?

That way I can work faster. :)

+2  A: 

appletviewer -J"-Djava.security.policy=all.policy" writeFile.html

From http://java.sun.com/developer/technicalArticles/Security/applets/

Alain O'Dea