Java Socket.getReceiveBufferSize()
Syntax
Socket.getReceiveBufferSize() has the following syntax.
public int getReceiveBufferSize() throws SocketException
Example
In the following code shows how to use Socket.getReceiveBufferSize() method.
import java.net.Socket;
/*w w w . ja va2 s. 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.getReceiveBufferSize());
client.close();
}
}