NIO Windowsプラットフォームの問題


1、設立  NIO  接続
http://communitygrids.blogspot.com/2007/09/windows-vista-sockets-java-nio-and.html
  SocketChannel sc = SocketChannel.open();
  sc.socket().setReuseAddress(true);
  sc.socket().setKeepAlive(true);
  sc.configureBlocking(false);
 
  InetSocketAddress ia = new InetSocketAddress(_hostName, _portNum);
  sc.connect(ia);