在 SocketChannel/ServerSocketChannel 中使用底层 Socket/ServerSocket?
我正在尝试使用 Java.nio-package 进行非阻塞通信。因此,我在选择器中获取了 ServerSocketChannel 和所有连接的客户端 (SocketChannel),并使用 Selector.select() 等待数据 (OP_ACCEPT/OP_READ)。
我的问题是:我可以 - 而不是使用 ByteBuffer 并直接使用 SocketChannel.read() 读取 - 使用底层 Socket,获取 InputStream 并使用该流读取?或者这会弄乱选择器的东西吗?
I'm trying the Java.nio-package for non-blocking communication. So I got my ServerSocketChannel and all my connected clients (SocketChannel) in a Selector and wait for data (OP_ACCEPT/OP_READ) using Selector.select().
My question is: Can I - instead of using a ByteBuffer and read directly with SocketChannel.read() - use the underlying Socket, get an InputStream and read using that stream? Or will that mess up the selector-stuff?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。
http://download .oracle.com/javase/1.4.2/docs/api/java/net/Socket.html#getInputStream%28%29
如果此套接字有关联的通道,则生成的输入流将其所有操作委托给频道。如果通道处于非阻塞模式,则输入流的读取操作将抛出 IllegalBlockingModeException。
You can't.
http://download.oracle.com/javase/1.4.2/docs/api/java/net/Socket.html#getInputStream%28%29
If this socket has an associated channel then the resulting input stream delegates all of its operations to the channel. If the channel is in non-blocking mode then the input stream's read operations will throw an IllegalBlockingModeException.