NIO Windows 平台的问题_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > NIO Windows 平台的问题

NIO Windows 平台的问题

 2013/10/10 13:19:06  陈修恒  程序员俱乐部  我要评论(0)
  • 摘要:1、建立NIO连接http://communitygrids.blogspot.com/2007/09/windows-vista-sockets-java-nio-and.htmlSocketChannelsc=SocketChannel.open();sc.socket().setReuseAddress(true);sc.socket().setKeepAlive(true);sc.configureBlocking(false)
  • 标签:Windows 问题
1、建立  NIO  连接
http://communitygrids.blogspot.com/2007/09/windows-vista-sockets-java-nio-and.html

class="java" name="code">  SocketChannel sc = SocketChannel.open();
  sc.socket().setReuseAddress(true);
  sc.socket().setKeepAlive(true);
  sc.configureBlocking(false);
 
  InetSocketAddress ia = new InetSocketAddress(_hostName, _portNum);
  sc.connect(ia);
发表评论
用户名: 匿名