我开发了应用程序。 我用套接字连接。 我可以在wifi上打开socket但无法在3G上插座。 我用Google搜索但没有运气。
请帮帮我。
这是我的代码:
SocketAddress socketAddress = new InetSocketAddress(uri.getHost(), port);
this.socketChannel = SocketChannel.open();
this.socketChannel.configureBlocking(false);
this.socketChannel.connect(socketAddress); // Create a Selector and attach to SocketChannel
Selector selector = Selector.open(); this.socketChannel.register(selector,
this.socketChannel.validOps());
提前致谢。