SecurityManager.checkRead(String file, Object context) has the following syntax.
public void checkRead(String file, Object context)
In the following code shows how to use SecurityManager.checkRead(String file, Object context) method.
import java.security.AccessControlContext; import java.security.AccessController; //from w w w . j a v a 2 s . co m public class Main extends SecurityManager { public static void main(String[] args) { AccessControlContext con = AccessController.getContext(); System.setProperty("java.security.policy", "file:/C:/java.policy"); Main sm = new Main(); System.setSecurityManager(sm); sm.checkRead("test.txt", con); System.out.println("Allowed!"); } }
The code above generates the following result.