Java URL.getProtocol()
Syntax
URL.getProtocol() has the following syntax.
public String getProtocol()
Example
In the following code shows how to use URL.getProtocol() method.
import java.net.URL;
/*from w w w . j av a 2 s . co m*/
public class Main {
public static void main(String args[]) throws Exception {
URL u = new URL("http://www.yourserver.com/abc/demo.htm");
System.out.println("The URL is " + u);
System.out.println("The protocol part is " + u.getProtocol());
}
}
The code above generates the following result.