在 SocketChannel/ServerSocketChannel 中使用底层 Socket/ServerSocket?

发布于 2024-12-05 20:28:27 字数 265 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(1

喵星人汪星人 2024-12-12 20:28:27

你不能。

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.

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