Java URI.getRawPath()
Syntax
URI.getRawPath() has the following syntax.
public String getRawPath()
Example
In the following code shows how to use URI.getRawPath() method.
import java.net.URI;
import java.net.URISyntaxException;
/*w w w . j av a2s .co m*/
public class Main {
public static void main(String[] args) throws NullPointerException, URISyntaxException {
URI uri = new URI("http://www.java2s.com");
System.out.println("URI : " + uri);
System.out.println("Authority : " + uri.getRawPath());
}
}
The code above generates the following result.