The Java Tutorials have been written for JDK 8. Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available.
See Java Language Changes for a summary of updated language features in Java SE 9 and subsequent releases.
See JDK Release Notes for information about new features, enhancements, and removed or deprecated options for all JDK releases.
To grant code signed by susan
permission to read any files in the C:\TestData
directory, you need to create a policy entry granting this permission. Note that "Code signed by susan
" is an abbreviated way of saying "Code in a class file contained in a JAR file, where the JAR file was signed using the private key corresponding to the public key that appears in a keystore certificate in an entry aliased by susan
."
Choose the Add Policy Entry button in the main Policy Tool window. This brings up the Policy Entry dialog box:
Using this dialog box, type the following alias into the SignedBy text box:
susan
Leave the CodeBase text box blank, to grant all code signed by susan
the permission, no matter where it comes from.
susan
that comes from the C:\Test\
directory, you would type the following URL into the CodeBase text box:
file:/C:/Test/*
To add the permission, choose the Add Permission button. This brings up the Permissions dialog box.
Do the following.
java.io.FilePermission
) now appears in the text box to the right of the drop-down list.C:\TestData\
directory:
C:\TestData\*
Now the Permissions dialog box looks like the following.
Choose the OK button. The new permission appears in a line in the Policy Entry dialog, as follows.
\n
to indicate a new line), so the policy file requires two backslashes to indicate a single backslash. If you use single backslashes as your directory separators, Policy Tool automatically converts them to double backslashes for you.
You are now done specifying this policy entry, so choose the Done button in the Policy Entry dialog. The Policy Tool window now contains a line representing the policy entry, showing the SignedBy value.