Java API Tutorial - Java URI.resolve(String str)








Syntax

URI.resolve(String str) has the following syntax.

public URI resolve(String str)

Example

In the following code shows how to use URI.resolve(String str) method.

import java.net.URI;
import java.net.URISyntaxException;

public class Main {
  public static void main(String[] args) throws URISyntaxException {
    URI uri = new URI("http://java2s.com/");
    System.out.println("Resolved URI = " + uri.resolve("/index.htm"));
  }
}

Output: