The
getProtocol() function is a part of
URL class. The function getProtocol() returns the Protocol of a specified URL.
Function Signature
public String getProtocol()
Syntax
url.getProtocol()
Parameter This function does not require any parameter
Return Type: The function returns
String Type
Below programs illustrates the use of getProtocol() function:
Example 1:
Output:
URL = https:// www.geeksforgeeks.org
Protocol = https
URL = http:// www.geeksforgeeks.org
Protocol = http
URL = ftp:// www.geeksforgeeks.org
Protocol = ftp