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