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