What does the Java Applet security warning “JAR file manifest does not contain the Permissions attribute”mean?

后端 未结 4 737
情深已故
情深已故 2021-02-05 05:14

I have a Java Applet which needs access to the local filesystem of the client. I have created a simple certificate for my own (it is NOT certified by Verisign,Commodo, ...). I s

4条回答
  •  春和景丽
    2021-02-05 06:01

    You don't need to buy a certificate, just fix the manifest file.

    Add this line:

    permissions: all-permissions
    

    Or this line if you need only limited access:

    permissions: sandbox
    

提交回复
热议问题