Java URI.relativize(URI uri)
Syntax
URI.relativize(URI uri) has the following syntax.
public URI relativize(URI uri)
Example
In the following code shows how to use URI.relativize(URI uri) method.
import java.net.URI;
import java.net.URISyntaxException;
/*from w w w . j ava 2 s.c o m*/
public class Main {
public static void main(String[] args) throws URISyntaxException {
URI uri1 = new URI("http://java2s.com/");
URI uri2 = new URI("http://java2s.com/index.htm");
System.out.println("Relativized URI = " + uri1.relativize(uri2));
}
}
Output: