Android 中对套接字的非阻塞写入

发布于 2024-11-25 02:34:24 字数 100 浏览 0 评论 0原文

我有一个打开了套接字的 Android 应用程序。我想写入此套接字,而不会在写入时阻塞线程很长一段时间。如果发生任何 IO 错误,我希望写入会默默地失败。有没有简单的方法可以做到这一点?

I have an Android app that has a Socket open. I would like to write to this socket without any possibility of blocking the thread on the write for a noticeable amount of time. If any IO error occurs, I would like the write to just silently fail. Is there an easy way to do this?

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

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

发布评论

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

评论(2

妖妓 2024-12-02 02:34:24

是的,NIO 提供了 SocketChannel类(在 Socket 上调用 getChannel 方法),它允许您调用 configureBlocking 以使用非阻塞模式。然后,您应该通过通道而不是通过 Socket 对象执行所有 I/O。

Yes, NIO provides a SocketChannel class (call the getChannel method on your Socket), which allows you to call configureBlocking to use non-blocking mode. You should then do all your I/O through the channel, and not through the Socket object.

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