Java API Tutorial - 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 ww  w.j  a  va2  s  .  c om
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();
  }
}

The code above generates the following result.