Java URI .getRawSchemeSpecificPart ()

Syntax

URI.getRawSchemeSpecificPart() has the following syntax.

public String getRawSchemeSpecificPart()

Example

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


import java.net.URI;
import java.net.URISyntaxException;
//from   w  w  w .  j a va 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("RawSchemeSpecificPart : " + uri.getRawSchemeSpecificPart());
  }
}

    

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