Java Socket.getSoTimeout()
Syntax
Socket.getSoTimeout() has the following syntax.
public int getSoTimeout() throws SocketException
Example
In the following code shows how to use Socket.getSoTimeout() method.
import java.net.Socket;
/* www . j av a2s .c om*/
public class Main {
public static void main(String[] args) throws Exception {
Socket client = new Socket("google.com", 80);
client.setSoTimeout(1000);
System.out.println(client.getSoTimeout());
client.close();
}
}