VOOZH about

URL: https://www.geeksforgeeks.org/java/url-getprotocol-method-in-java-with-examples/

⇱ URL getProtocol() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

URL getProtocol() method in Java with Examples

Last Updated : 11 Jul, 2025
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
Comment