Wednesday, October 8, 2025
HomeLanguagesJavaURI getRawPath() method in Java with Examples

URI getRawPath() method in Java with Examples

The getRawPath() function is a part of URI class. The function getRawPath() returns the Path name of a specified URI.This function returns the exact value of path without decoding the sequence of escaped octets if any.

Function Signature:

public String getRawPath()

Syntax:

url.getRawPath()

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

Below programs illustrates the use of getRawPath() function:

Example 1: Given a URI we will get the Path using the getRawPath() function.




// Java program to show the 
// use of the function getRawPath()
  
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  Path
            String Raw_Path = uri.getRawPath();
  
            // display the URI
            System.out.println("URI = " + uri);
  
            // display the  Raw Path
            System.out.println(" Raw Path=" + Raw_Path);
        }
        // if any error occurs
        catch (URISyntaxException e) {
            // display the error
            System.out.println("URI Exception =" + e.getMessage());
        }
    }
}


Output:

URI = https://www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples/
 Raw Path=/url-getprotocol-method-in-java-with-examples/

Example 2: The value returned by getPath() and getRawPath() 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 getPath() function decodes the sequence of escaped octets if any.




// Java program to show the 
// use of the function getRawPath()
  
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%E2%82%AC/");
  
            // get the  Path
            String _Path = uri.getPath();
  
            // get the  Raw Path
            String Raw_Path = uri.getRawPath();
  
            // display the URI
            System.out.println("URI = " + uri);
  
            // display the  Path
            System.out.println(" Path=" + _Path);
  
            // display the  Raw_Path
            System.out.println(" Raw Path=" + Raw_Path);
        }
        // if any error occurs
        catch (URISyntaxException e) {
            // display the error
            System.out.println("URI Exception =" + e.getMessage());
        }
    }
}


Output:

URI = https://www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples%E2%82%AC/
 Path=/url-getprotocol-method-in-java-with-examples?/
 Raw Path=/url-getprotocol-method-in-java-with-examples%E2%82%AC/
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32341 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6709 POSTS0 COMMENTS
Nicole Veronica
11874 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6832 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6783 POSTS0 COMMENTS
Umr Jansen
6786 POSTS0 COMMENTS