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