Java URI(String str) Constructor
Syntax
URI(String str) constructor from URI has the following syntax.
public URI(String str) throws URISyntaxException
Example
In the following code shows how to use URI.URI(String str) constructor.
import java.net.URI;
import java.net.URISyntaxException;
/*from w w w.jav a2s . c o m*/
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);
}
}
The code above generates the following result.