Java Socket.isInputShutdown()
Syntax
Socket.isInputShutdown() has the following syntax.
public boolean isInputShutdown()
Example
In the following code shows how to use Socket.isInputShutdown() method.
import java.net.Socket;
/* w w w. j a 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.isInputShutdown());
client.close();
}
}