URI(String scheme, String ssp, String fragment) constructor from URI has the following syntax.
public URI(String scheme, String ssp, String fragment) throws URISyntaxException
In the following code shows how to use URI.URI(String scheme, String ssp, String fragment) constructor.
//from w w w. j a v a 2s .c om 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", "8080", "xyz"); System.out.println(uri); } }
The code above generates the following result.