Java API Tutorial - Java Socket.getSoLinger()








Syntax

Socket.getSoLinger() has the following syntax.

public int getSoLinger()  throws SocketException

Example

In the following code shows how to use Socket.getSoLinger() method.

import java.net.Socket;
/* w  ww . j  a  v a  2  s.com*/
public class Main {
  public static void main(String[] args) throws Exception {
    Socket client = new Socket("google.com", 80);
    client.setSoLinger(true,1000);
    System.out.println(client.getSoLinger());

    client.close();
  }
}

The code above generates the following result.