Java API Tutorial - 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  www. j a va 2s  .  co  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: