Java Socket.getLocalPort()

Syntax

Socket.getLocalPort() has the following syntax.

public int getLocalPort()

Example

In the following code shows how to use Socket.getLocalPort() method.


import java.net.Socket;
//www. j ava  2  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();
  }
}




















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder