Java Socket.isConnected()
Syntax
Socket.isConnected() has the following syntax.
public boolean isConnected()
Example
In the following code shows how to use Socket.isConnected() method.
//from w ww.ja v a 2 s .c o m
import java.net.Socket;
public class Main {
public static void main(String[] args) throws Exception {
Socket client = new Socket("google.com", 80);
System.out.println(client.isConnected());
client.close();
}
}