Java URI.getPath()
Syntax
URI.getPath() has the following syntax.
public String getPath()
Example
In the following code shows how to use URI.getPath() method.
import java.net.URI;
import java.net.URISyntaxException;
/* ww w. ja v a2 s . c o m*/
public class Main {
public static void main(String[] args) throws NullPointerException, URISyntaxException {
URI uri = new URI("http://www.java2s.com:8080/yourpath/fileName.htm");
System.out.println("URI : " + uri);
System.out.println(uri.getPath());
}
}
The code above generates the following result.