nio 非阻塞式数据传输,服务端



//1.获取通道
ServerSocketChannel ssChannel = ServerSocketChannel.open();

//2.将通道变为非阻塞式
ssChannel.configureBlocking(false);

//3.进行端口绑定
ssChannel.bind(new InetSocketAddress(8999));

//4.获取选择器
Selector selector = Selector.open();

//5.注册服务器通道到选择器中,设定监听事件为接收事件
ssChannel.register(selector, SelectionKey.OP_ACCEPT);

//6.轮询式获取选择器上已经准备好的事件
while(selector.select()>0){
Iterator<SelectionKey> iterator = selector.selectedKeys().iterator();
//7,循环便利
while(iterator.hasNext()){

//8.获取准备就绪的事件
SelectionKey sk = iterator.next();

//9.判断具体是什么事件
if(sk.isAcceptable()){
//10.若“接收就绪”,获取客户端连接
SocketChannel sChannel = ssChannel.accept();

//11.切换非阻塞模式
sChannel.configureBlocking(false);

//12.将该通道注册到选择器中
sChannel.register(selector, SelectionKey.OP_READ);
}else if(sk.isReadable()){
//13.获取读就绪的状态的通道
SocketChannel sChannel = (SocketChannel) sk.channel();

//14。读取数据
ByteBuffer bBuf = ByteBuffer.allocate(1024);
int len = 0;
while((len = sChannel.read(bBuf))>0){
//说明有数据
bBuf.flip();
System.out.println(new String(bBuf.array(),0,len));
bBuf.clear();
}
}

//15。重要。取消选择键
iterator.remove();
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值