Java API Tutorial - Java URI.toString()








Syntax

URI.toString() has the following syntax.

public String toString()

Example

In the following code shows how to use URI.toString() method.

//from   w w  w.j  a va 2s.co  m
import java.net.URI;
import java.net.URISyntaxException;

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(uri.toString());
  }
}

The code above generates the following result.