La función getProtocol() es parte de la clase URL . La función getProtocol() devuelve el Protocolo de una URL específica.
Función Firma
public String getProtocol()
Sintaxis
url.getProtocol()
Parámetro Esta función no requiere ningún parámetro
Tipo de retorno : la función devuelve el tipo de string
Los siguientes programas ilustran el uso de la función getProtocol():
Ejemplo 1:
// Java program to show the // use of the function getProtocol() import java.net.*; class GFG { public static void main(String args[]) { // url object URL url = null; try { // create a URL url = new URL("https:// www.geeksforgeeks.org"); // get the Protocol String Protocol = url.getProtocol(); // display the URL System.out.println("URL = " + url); // display the Protocol System.out.println("Protocol = " + Protocol); // create a URL url = new URL("http:// www.geeksforgeeks.org"); // get the Protocol Protocol = url.getProtocol(); // display the URL System.out.println("URL = " + url); // display the Protocol System.out.println("Protocol = " + Protocol); // create a URL url = new URL("ftp:// www.geeksforgeeks.org"); // get the Protocol Protocol = url.getProtocol(); // display the URL System.out.println("URL = " + url); // display the Protocol System.out.println("Protocol = " + Protocol); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } }
Producción:
URL = https:// www.geeksforgeeks.org Protocol = https URL = http:// www.geeksforgeeks.org Protocol = http URL = ftp:// www.geeksforgeeks.org Protocol = ftp
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA