📜  Java中的 URL getPort() 方法及示例

📅  最后修改于: 2022-05-13 01:54:25.276000             🧑  作者: Mango

Java中的 URL getPort() 方法及示例

getPort()函数是 URL 类的一部分。函数getPort() 返回指定 URL 的端口。该函数返回端口号,如果未设置端口,则返回 -1

函数签名

public int getPort()

句法

url.getPort()

返回类型:函数返回整数类型

参数:此函数不需要任何参数

下面的程序说明了 getPort()函数的使用:

示例 1
指定 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);
        }
    }
}
输出:
URL = https:// www.geeksforgeeks.org:80
 Port=80

示例 2:创建一个没有定义端口的 URL,然后尝试使用 getPort()函数获取端口。

// 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);
        }
    }
}
输出:
URL = https:// www.geeksforgeeks.org
 Port=-1