Java tutorial
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(client.isBound()); client.close(); } }