URI GetPath() Example
Returns the decoded path component of this URI.
URIclass GetPath() method example. This example shows you how to use GetPath() method.This method Returns the decoded path component of this URI.
Here is the code:-
/**
* @Program that Returns the decoded path component of this URI.
* GetPath.java
* Author:-RoseIndia Team
* Date:-24-jun-2008
*/
import java.net.*;
public class GetPath {
public static void main(String[] args) throws Exception {
String scheme = "http";
String userInfo = "girish";
String host = "tewari.com";
int port = -1;
String path = "/mail/";
String query = "open";
String fragment = "inbox";
URI uri = new URI(scheme, userInfo, host, port, path, query, fragment);
System.out.println("Given uri is: " + uri);
//Returns the decoded path component of this URI.
System.out.println("Given path is: " + uri.getPath());
}
} |
Output of the program:-
Given uri is: http://girish@tewari.com/mail/?open#inbox
Given path is: /mail/ |
|