Java API Tutorial - Java URI.toASCIIString()








Syntax

URI.toASCIIString() has the following syntax.

public String toASCIIString()

Example

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

import java.net.URI;
import java.net.URISyntaxException;
/*from   www.  j  ava 2 s .  c  om*/
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.toASCIIString());
  }
}

The code above generates the following result.