Socket.isOutputShutdown() has the following syntax.
public boolean isOutputShutdown()
In the following code shows how to use Socket.isOutputShutdown() method.
import java.net.Socket; /*from w w w .j av a2 s . com*/ 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(); } }
The code above generates the following result.