signed applet gives AccessControlException: access denied, when calling from javascript

后端 未结 4 2083
名媛妹妹
名媛妹妹 2020-12-11 08:21

I have an easy self-signed an applet (done with keytool and the jarsigner):

public class NetAppletLauncher extends JApplet {

    private static final long s         


        
4条回答
  •  感情败类
    2020-12-11 08:48

    The Java 2 security model requires (roughly) that every frame on the stack must be granted a permission for the access control context (acc) to have that permission. JavaScript is on the stack and does not have file access permissions.

提交回复
热议问题