标签: android sockets
我有一个连接到TCP服务器的Android应用程序。 我做了一个按钮来检查服务器是否可用。 如果我单击按钮,它会继续尝试连接,并且不会进入例外。
代码:
try { Socket s = new Socket("192.168.xxx.xx",xxxxx); available = true; s.close(); } catch (IOException e) { //show error toast. }