Java Socket.isOutputShutdown()
Syntax
Socket.isOutputShutdown() has the following syntax.
public boolean isOutputShutdown()
Example
In the following code shows how to use Socket.isOutputShutdown() method.
import java.net.Socket;
/*from w ww .jav a 2 s . c om*/
public class Main {
public static void main(String[] args) throws Exception {
Socket client = new Socket("google.com", 80);
System.out.println(client.isOutputShutdown());
client.close();
}
}