List of usage examples for java.lang SecurityManager checkAccept
public void checkAccept(String host, int port)
SecurityException
if the calling thread is not permitted to accept a socket connection from the specified host and port number. From source file:Main.java
public static void main(String[] args) { System.setProperty("java.security.policy", "file:/C:/java.policy"); SecurityManager sm = new SecurityManager(); System.setSecurityManager(sm); sm.checkAccept("www.java2s.com", 8080); System.out.println("Allowed!"); }