URI GetScheme() Example
Returns the scheme component of this URI.
URIclass GetScheme() method example. This example shows you how to use GetScheme() method.This method Returns the scheme component of this URI.
Here is the code:-
/**
* @Program that Returns the scheme component of this URI.
* GetScheme.java
* Author:-RoseIndia Team
* Date:-24-jun-2008
*/
import java.net.*;
public class GetScheme {
public static void main(String[] args) throws Exception {
String scheme = "http";
String userInfo = "girish";
String host = "tewari.com";
int port = 8080;
String path = "/mail/";
String query = "open";
String fragment = "inbox";
URI uri = new URI(scheme, userInfo, host, port, path, query, fragment);
System.out.println("Given uri is: " + uri);
//Returns the scheme component of this URI.
System.out.println("Given scheme component is: " + uri.getScheme());
}
} |
Output of the program:-
Given uri is: http://girish@tewari.com:8080/mail/?open#inbox
Given scheme component is: http |
|