文档

Java™ 教程-Java Tutorials 中文版
设置策略文件以授予所需的权限
Trail: Security Features in Java SE
Lesson: Creating a Policy File

设置策略文件以授予所需的权限

A policy file is an ASCII text file and can be composed via a text editor or the graphical Policy Tool utility demonstrated in this section. The Policy Tool saves you typing and eliminates the need for you to know the required syntax of policy files, thus reducing errors.

This lesson uses the Policy Tool to create a policy file named examplepolicy, in which you will add a policy entry that grants code from the examples directory permission to write.

Follow these steps to create and modify your new policy file:

  1. 启动政策工具
  2. 授予所需的权限
  3. 保存策略文件

Note for UNIX Users: The steps illustrate creating the policy file for a Windows system. The steps are exactly the same if you are working on a UNIX system. Where the text says to store the policy file in the C:\Test directory, you can store it in another directory. The examples in the lesson Quick Tour of Controlling Applications assume that you stored it in the ~/test directory.

Previous page: Creating a Policy File
Next page: Start Policy Tool