List of usage examples for java.lang SecurityManager checkConnect
public void checkConnect(String host, int port, Object context)
SecurityException
if the specified security context is not allowed to open a socket connection to the specified host and port number. From source file:Main.java
public static void main(String[] args) { AccessControlContext acc = AccessController.getContext(); System.setProperty("java.security.policy", "file:/C:/java.policy"); SecurityManager sm = new SecurityManager(); System.setSecurityManager(sm); // perform the check sm.checkConnect("www.java2s.com", 8080, acc); System.out.println("Allowed!"); }