The getPath() function is a part of URI class. The function getPath() returns the Path name of a specified URI.
Function Signature:
public String getPath()
Syntax:
url.getPath()
Parameter: This function does not require any parameter
Return Type: The function returns String Type
Below programs illustrates the use of getPath() function:
Example 1: Given a URI we will get the Path using the getPath() function.
import java.net.*;
class Solution {
public static void main(String args[])
{
URI uri = null ;
try {
String _Path = uri.getPath();
System.out.println( "URI = " + uri);
System.out.println( " Path=" + _Path);
}
catch (URISyntaxException e) {
System.out.println( "URI Exception =" + e.getMessage());
}
}
}
|
Output:
URI = https://www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples/
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.
import java.net.*;
class Solution {
public static void main(String args[])
{
URI uri = null ;
try {
String _Path = uri.getPath();
String Raw_Path = uri.getRawPath();
System.out.println( "URI = " + uri);
System.out.println( " Path=" + _Path);
System.out.println( " Raw Path=" + Raw_Path);
}
catch (URISyntaxException e) {
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/
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
02 Jan, 2019
Like Article
Save Article