android TCP套接字(检查是否可用)

时间:2015-04-04 10:30:23

标签: android sockets

我有一个连接到TCP服务器的Android应用程序。 我做了一个按钮来检查服务器是否可用。 如果我单击按钮,它会继续尝试连接,并且不会进入例外。

代码:

try {
    Socket s = new Socket("192.168.xxx.xx",xxxxx);
    available = true;
    s.close();
} catch (IOException e) {
    //show error toast.
}

0 个答案:

没有答案