Wednesday, July 3, 2024
HomeLanguagesJavaURI getRawQuery() method in Java with Examples

URI getRawQuery() method in Java with Examples

The getRawQuery() function is a part of URI class. The function getRawQuery() returns the raw Query of a specified URI.This function returns the exact value of Query without decoding the sequence of escaped octets if any.

Function Signature:

public String getRawQuery()

Syntax:

uri.getRawQuery()

Parameter: This function does not require any parameter
Return Type: The function returns String Type

Below programs illustrates the use of getRawQuery() function:

Example 1: Given a URI we will get the raw Query using the getRawQuery() function.




// 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
  
            // 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());
        }
    }
}


Output:

URI = https://www.neveropen.co.za/url-getprotocol-method-in-java-with-examples?title=protocol
 Raw Query=title=protocol

Example 2: Now we will not provide any query and use the function to get the query and see the results.




// 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
  
            // 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());
        }
    }
}


Output:

URI = https://www.neveropen.co.za/url-getprotocol-method-in-java-with-examples
 Raw Query=null

Example 3: The value returned by getQuery() and getRawQuery() is same except that all sequences of escaped octets are decoded. The getRawPath() returns the exact value of the string as provided by the user but the getQuery() function decodes the sequence of escaped octets if any.




// 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
  
            // 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());
        }
    }
}


Output:

URI = https://www.neveropen.co.za/url-getprotocol-method-in-java-with-examples?title=protocol%E2%82%AC
 Query=title=protocol?
 Raw Query=title=protocol%E2%82%AC

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments