java.security.AccessControlException
I created a JApplet and need access an SFTP server (JScape lib) and local Hard Drive. My JApplet is signed and I do accept it.
I read that you can modify the security file in Java directory but not acceptable for an Internet base application.
My JApplet:
publicvoid init(){
try{
java.awt.EventQueue.invokeAndWait(new Runnable(){
publicvoid run(){
...
I also found on the internet:
AccessController.doPrivileged(new PrivilegedAction(){
public Object run(){
What can I do?
Is a Web Start would have no security issue?
Thanks all! :)

