當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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


相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 URL getPort() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。