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


Java URI getRawUserInfo()用法及代碼示例


getRawUserInfo()函數是URI類的一部分。函數getRawUserInfo()返回指定URI的原始UserInfo部分。此函數返回用戶信息的確切值,而不對轉義八位字節的序列進行解碼(如有)。

函數簽名:

public String getRawUserInfo()

用法


uri.getRawUserInfo()

參數:此函數不需要任何參數
返回類型:函數返回字符串類型

以下示例程序旨在說明getUserInfo()函數的用法:

範例1:給定一個URI,我們將使用getRawUserInfo()函數獲取UserInfo。

// Java program to show the 
// use of the function getRawUserInfo() 
  
import java.net.*; 
class Solution { 
    public static void main(String args[]) 
    { 
        // uri  object 
        URI uri = null; 
  
        try { 
            // create a URI 
            uri = new URI("https://Arnab_Kundu@www.geeksforgeeks.org"); 
  
            // get the  Raw UserInfo 
            String Raw_UserInfo = uri.getRawUserInfo(); 
  
            // display the URI 
            System.out.println("URI = " + uri); 
  
            // display the  UserInfo 
            System.out.println(" Raw UserInfo="
                               + Raw_UserInfo); 
        } 
        // if any error occurs 
        catch (URISyntaxException e) { 
            // display the error 
            System.out.println("URL Exception ="
                               + e.getMessage()); 
        } 
    } 
}
輸出:
URI = https://Arnab_Kundu@www.geeksforgeeks.org
 Raw UserInfo=Arnab_Kundu

範例2:getUserInfo()和getRawUserInfo()返回的值是相同的,隻是對所有轉義八位位組的序列進行了解碼。 getRawUserInfo()返回用戶提供的字符串的確切值,但getUserInfo()函數解碼轉義八位字節的序列(如果有)。

// Java program to show the 
// use of the function getRawUserInfo() 
  
import java.net.*; 
  
class Solution { 
    public static void main(String args[]) 
    { 
        // uri  object 
        URI uri = null; 
  
        try { 
            // create a URI 
            uri = new URI("https://Arnab_Kundu%E2%82%AC@www.geeksforgeeks.org"); 
  
            // get the  UserInfo 
            String _UserInfo = uri.getUserInfo(); 
  
            // get the  Raw UserInfo 
            String Raw_UserInfo = uri.getRawUserInfo(); 
  
            // display the URI 
            System.out.println("URI = " + uri); 
  
            // display the  UserInfo 
            System.out.println(" UserInfo=" + _UserInfo); 
  
            // display the  UserInfo 
            System.out.println(" Raw UserInfo=" + Raw_UserInfo); 
        } 
        // if any error occurs 
        catch (URISyntaxException e) { 
            // display the error 
            System.out.println("URL Exception =" + e.getMessage()); 
        } 
    } 
}
輸出:
URI = https://Arnab_Kundu%E2%82%AC@www.geeksforgeeks.org
 UserInfo=Arnab_Kundu?
 Raw UserInfo=Arnab_Kundu%E2%82%AC


相關用法


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