android中的3G上的套接字连接问题

时间:2014-10-06 21:05:33

标签: android websocket serversocket faye

我开发了应用程序。 我用套接字连接。 我可以在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());

提前致谢。

0 个答案:

没有答案