Android 中的 SocketChannel
我有一个关于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
尝试打开物理设备上的套接字。您可能在模拟器上运行它并且该端口未打开。
try opening the socket on the physical device. your probably running it on the emulator and that port isnt opened.