Example usage for java.lang SecurityManager checkAccept

List of usage examples for java.lang SecurityManager checkAccept

Introduction

In this page you can find the example usage for java.lang SecurityManager checkAccept.

Prototype

public void checkAccept(String host, int port) 

Source Link

Document

Throws a SecurityException if the calling thread is not permitted to accept a socket connection from the specified host and port number.

Usage

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!");
}