Java API Tutorial - Java Socket.getSendBufferSize()








Syntax

Socket.getSendBufferSize() has the following syntax.

public int getSendBufferSize()   throws SocketException

Example

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

import java.net.Socket;
//from w  w w  . j  a v  a  2s. c o  m
public class Main {
  public static void main(String[] args) throws Exception {
    Socket client = new Socket("google.com", 80);
    client.setSendBufferSize(1000);
    System.out.println(client.getSendBufferSize());

    client.close();
  }
}

The code above generates the following result.