Java SecurityManager .checkPropertiesAccess ()

Syntax

SecurityManager.checkPropertiesAccess() has the following syntax.

public void checkPropertiesAccess()

Example

In the following code shows how to use SecurityManager.checkPropertiesAccess() method.


/* w  ww .  ja  v a  2  s .  c o  m*/
public class Main extends SecurityManager {

   public static void main(String[] args) {
      System.setProperty("java.security.policy", "file:/C:/java.policy");

      Main sm = new Main();

      System.setSecurityManager(sm);

      sm.checkPropertiesAccess();

      System.out.println("Allowed!");
   }
}




















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable