Java URI(String scheme, String authority, String path, String query, String fragment) Constructor

Syntax

URI(String scheme, String authority, String path, String query, String fragment) constructor from URI has the following syntax.

public URI(String scheme,  String authority,  String path,  String query,  String fragment) throws URISyntaxException

Example

In the following code shows how to use URI.URI(String scheme, String authority, String path, String query, String fragment) constructor.


import java.net.URI;
import java.net.URISyntaxException;
//from  w  w w  .j  a v a2s .c o  m

public class Main {

  public static void main(String[] args) throws URISyntaxException {
    URI uri = new URI("http",  "abc",  "/def",  "name=value",  "xyz");
    System.out.println(uri);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder