Java URI.getScheme()
Syntax
URI.getScheme() has the following syntax.
public String getScheme()
Example
In the following code shows how to use URI.getScheme() method.
import java.net.URI;
import java.net.URISyntaxException;
/*from w w w . ja va 2s . c o m*/
public class Main {
public static void main(String[] args) throws NullPointerException, URISyntaxException {
URI uri = new URI("http://www.java2s.com:8080/yourpath/fileName.htm");
System.out.println("URI : " + uri);
System.out.println(uri.getScheme());
}
}
The code above generates the following result.