Java API Tutorial - 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;
// ww w.j  av  a  2  s. 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();
  }
}

The code above generates the following result.