Java Socket.close()
Syntax
Socket.close() has the following syntax.
public void close() throws IOException
Example
In the following code shows how to use Socket.close() method.
//from ww w . ja va 2 s . c o m
import java.net.Socket;
public class Main {
public static void main(String[] args) throws Exception {
Socket client = new Socket("google.com", 80);
System.out.println("Just connected to " + client.getRemoteSocketAddress());
client.close();
}
}