Tuesday, October 7, 2025
HomeLanguagesJavaURL getPort() method in Java with Examples

URL getPort() method in Java with Examples

The getPort() function is a part of URL class. The function getPort() returns the port of a specified URL. The function returns the port number or -1 if the port is not set

Function Signature

public int getPort()

Syntax

url.getPort()

Return Type: The function returns Integer Type

Parameter: This function does not require any parameter

Below programs illustrates the use of getPort() function:

Example 1
display port of specified URL




// Java program to show the use of the function getPort()
import java.net.*;
class Solution {
    public static void main(String args[])
    {
        // url  object
        URL url = null;
  
        try {
            // create a URL
            url = new URL("https:// www.geeksforgeeks.org:80");
  
            // get the  port
            int _port = url.getPort();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the  port
            System.out.println(" Port=" + _port);
        }
  
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}


Output:

URL = https:// www.geeksforgeeks.org:80
 Port=80

Example 2: Create a URL with no defined port and then try to get the port using the getPort() function.




// Java program to show the
// use of the function getPort()
  
import java.net.*;
  
class Solution {
    public static void main(String args[])
    {
        // url object
        URL url = null;
  
        try {
            // create a URL
            url = new URL("https:// www.geeksforgeeks.org");
  
            // get the port
            int _port = url.getPort();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the port
            System.out.println(" Port=" + _port);
        }
  
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}


Output:

URL = https:// www.geeksforgeeks.org
 Port=-1
RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS