当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java URL getUserInfo()用法及代码示例


getUserInfo()函数是URL类的一部分。函数getUserInfo()返回指定URL的UserInfo部分。

函数签名

public String getUserInfo()

用法


url.getUserInfo()

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

返回类型:函数返回字符串类型

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

例子1:给定一个URL,我们将使用getUserInfo()函数获取UserInfo。

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

例子2:现在,我们将不再提供任何用户信息,而是使用该函数获取UserInfo并查看结果。

// Java program to show the use 
// of the function getUserInfo() 
  
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  UserInfo 
            String _UserInfo = url.getUserInfo(); 
  
            // display the URL 
            System.out.println("URL = " + url); 
  
            // display the  UserInfo 
            System.out.println(" UserInfo= "
                               + _UserInfo); 
        } 
        // if any error occurs 
        catch (Exception e) { 
  
            // display the error 
            System.out.println(e); 
        } 
    } 
}
输出:
URL = https:// www.geeksforgeeks.org
 UserInfo= null


相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 URL getUserInfo() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。