⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e219. creating a new policy file.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
Use policytool to create or edit an existing policy file. This is an example of a policy file created using policytool. It grants two permissions. It grants code signed by Duke permission to read files located in the user's home directory. It also grants code from the location http://someserver/myjar.jar (regardless of who signed it) to read the file.encoding system property. 
    > policytool -file .policy
    
    keystore ".keystore";
    grant signedBy "Duke"  {
          permission java.io.FilePermission "${user.dir}/-", "read";
    };
    grant codeBase "http://someserver/myjar.jar" {
        permission java.util.PropertyPermission "file.encoding", "read";
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -