Java中的 URI getUserInfo() 方法及示例
getUserInfo()函数是 URI 类的一部分。函数getUserInfo() 返回指定 URI 的 UserInfo 部分。
函数签名:
public String getUserInfo()
语法:
uri.getUserInfo()
参数:此函数不需要任何参数
返回类型:函数返回字符串类型
下面的程序说明了 getUserInfo()函数的使用:
示例 1:给定一个 URI,我们将使用 getUserInfo()函数获取 UserInfo。
// Java program to show the
// use of the function getUserInfo()
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 UserInfo
String _UserInfo = uri.getUserInfo();
// display the URI
System.out.println("URI = " + uri);
// display the UserInfo
System.out.println(" UserInfo=" + _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
UserInfo=Arnab_Kundu
示例 2: getUserInfo() 和 getRawUserInfo() 返回的值相同,只是所有转义八位字节序列都被解码。 getRawUserInfo() 返回用户提供的字符串的确切值,但 getUserInfo()函数解码转义八位字节序列(如果有)。
// Java program to show the
// use of the function getUserInfo()
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