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


Java URI getRawQuery()用法及代码示例


getRawQuery()函数是URI类的一部分。函数getRawQuery()返回指定URI的原始查询。此函数返回Query的确切值,而不对转义八位字节的序列进行解码(如果有的话)。

函数签名

public String getRawQuery()

用法


uri.getRawQuery()

参数:此函数不需要任何参数
返回类型:函数返回字符串类型

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

范例1:给定一个URI,我们将使用getRawQuery()函数获取原始查询。

// Java program to show the  
// use of the function getRawQuery() 
  
import java.net.*; 
  
class Solution { 
    public static void main(String args[]) 
    { 
        // uri  object 
        URI uri = null; 
  
        try { 
            // create a URI 
            uri = new URI("https://www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol"); 
  
            // get the  Query 
            String Raw_Query = uri.getRawQuery(); 
  
            // display the URL 
            System.out.println("URI = " + uri); 
  
            // display the  Raw Query 
            System.out.println(" Raw Query=" + Raw_Query); 
        } 
        // if any error occurs 
        catch (URISyntaxException e) { 
            // display the error 
            System.out.println("URI Exception =" + e.getMessage()); 
        } 
    } 
}
输出:
URI = https://www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol
 Raw Query=title=protocol

范例2:现在,我们将不提供任何查询,而使用该函数来获取查询并查看结果。

// Java program to show the  
// use of the function getRawQuery() 
  
import java.net.*; 
  
class Solution { 
    public static void main(String args[]) 
    { 
        // uri  object 
        URI uri = null; 
  
        try { 
            // create a URI 
            uri = new URI("https://www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples"); 
  
            // get the  Query 
            String Raw_Query = uri.getRawQuery(); 
  
            // display the URL 
            System.out.println("URI = " + uri); 
  
            // display the  Raw Query 
            System.out.println(" Raw Query=" + Raw_Query); 
        } 
        // if any error occurs 
        catch (URISyntaxException e) { 
            // display the error 
            System.out.println("URI Exception =" + e.getMessage()); 
        } 
    } 
}
输出:
URI = https://www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples
 Raw Query=null

范例3:getQuery()和getRawQuery()返回的值是相同的,只是对所有转义八位位组的序列进行了解码。 getRawPath()返回用户提供的字符串的确切值,但getQuery()函数解码转义八位字节的序列(如果有)。

// Java program to show the  
// use of the function getRawQuery() 
  
import java.net.*; 
  
class Solution { 
    public static void main(String args[]) 
    { 
        // uri  object 
        URI uri = null; 
  
        try { 
            // create a URI 
            uri = new URI("https://www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol%E2%82%AC"); 
  
            // get the  Query 
            String _Query = uri.getQuery(); 
  
            // display the URL 
            System.out.println("URI = " + uri); 
  
            // display the  Query 
            System.out.println(" Query=" + _Query); 
  
            // get the  Raw Query 
            String Raw_Query = uri.getRawQuery(); 
  
            // display the Raw Query 
            System.out.println(" Raw Query=" + Raw_Query); 
        } 
        // if any error occurs 
        catch (URISyntaxException e) { 
            // display the error 
            System.out.println("URI Exception =" + e.getMessage()); 
        } 
    } 
}
输出:
URI = https://www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol%E2%82%AC
 Query=title=protocol?
 Raw Query=title=protocol%E2%82%AC


相关用法


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