以上为非阻塞的服务器端中的一段
    public void initializeOperations() throws IOException,UnknownHostException
    {
System.out.println("Inside initialization");
sel = Selector.open();
server = ServerSocketChannel.open();
server.configureBlocking(false);
InetAddress ia = InetAddress.getLocalHost();
InetSocketAddress isa = new InetSocketAddress(ia,port);
server.socket().bind(isa);
    }
是其中一个方法