List of usage examples for java.lang SecurityManager checkPropertyAccess
public void checkPropertyAccess(String key)
SecurityException
if the calling thread is not allowed to access the system property with the specified key
name. From source file:Main.java
public static void main(String[] args) { System.setProperty("java.security.policy", "file:/C:/java.policy"); SecurityManager sm = new Main(); System.setSecurityManager(sm); sm.checkPropertyAccess("java.runtime.name"); System.out.println("Allowed!"); }