Socket.getLocalPort() has the following syntax.
public int getLocalPort()
In the following code shows how to use Socket.getLocalPort() method.
import java.net.Socket; /*from ww w.j a va2 s. co m*/ public class Main { public static void main(String[] args) throws Exception { Socket client = new Socket("google.com", 80); System.out.println(client.getLocalPort()); client.close(); } }
The code above generates the following result.