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