Android 中的 SocketChannel

发布于 2024-09-30 11:22:09 字数 322 浏览 5 评论 0原文

我有一个关于 Android 中的 SocketChannels 的问题。这是我的代码:

SocketChannel socketChannel = SocketChannel.open();
socketChannel.connect(new InetSocketAddress("127.0.0.1", 90));

此代码适用于 Java,但不适用于 Android。我总是收到 IOException 我的第一个问题是第一行。我必须添加打开套接字的权限。现在第一行可以工作,但第二行不行。我总是收到 IOException。

有什么建议吗?

I have a question about SocketChannels in Android. This is my code:

SocketChannel socketChannel = SocketChannel.open();
socketChannel.connect(new InetSocketAddress("127.0.0.1", 90));

This code works in Java but not in Android. I always get an IOException My first problem was the first line. I had to add permissions to open sockets. The first line now works but the second line doesn't. I always get an IOException.

Any suggestions?

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

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

发布评论

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

评论(2

掩于岁月 2024-10-07 11:22:09

127.0.0.1?你尝试使用套接字 90 连接到你的 Android 设备。我认为你的设备没有打开这样的端口供你的程序连接。

127.0.0.1? you try to connect to your android device with socket 90. I don't think your device has open up such port for your program to connect.

南街女流氓 2024-10-07 11:22:09

尝试打开物理设备上的套接字。您可能在模拟器上运行它并且该端口未打开。

try opening the socket on the physical device. your probably running it on the emulator and that port isnt opened.

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