Java-java的nio服务器,在chrome内核访问时出现seletionkey重复

发布于 2016-11-09 21:29:22 字数 1559 浏览 1091 评论 1

while (true) {
selector.select();
Set<SelectionKey> selectedKeys = selector.selectedKeys();
Iterator<SelectionKey> iterator = selectedKeys.iterator();
while (iterator.hasNext()) {
SelectionKey selectionKey = iterator.next();
iterator.remove();
if (selectionKey.isAcceptable()) {
System.out.println("Accept!" + selectionKey);
SocketChannel socketChannel = ((ServerSocketChannel)
selectionKey.channel()).accept();
if (null != socketChannel) {
socketChannel.configureBlocking(false);
socketChannel.register(selector, SelectionKey.OP_READ);
}
}
else if (selectionKey.isReadable()) {
System.out.println("Read!" + selectionKey);
SocketChannel socketChannel = (SocketChannel) selectionKey.channel();
if (socketChannel != null) {
socketChannel.configureBlocking(false);
ByteBuffer input = ByteBuffer.allocate(1024);
input.clear();
socketChannel.read(input);
CoreController.getInstance().dispatch(
new RequestEvent(socketChannel, selectionKey, input));
}
selectionKey.interestOps(selectionKey.interestOps()
& ~SelectionKey.OP_READ);
}
}
selectedKeys.clear();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜柠檬 2017-06-03 09:51:12

看你的前台代码怎么写的了,真的要用NIO给浏览器做socket 建议用websocket+NIO框架。只是学习的话,debug一下你的demo代码。多找几个demo看看~

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文