Método URL toExternalForm() en Java con ejemplos

La función toExternalForm() es parte de la clase URL. La función toExternalForm() devuelve la representación de string de una URL especificada. La string se crea llamando a la función toExternalForm() del controlador de protocolo de flujo para este objeto.

Firma de función:

public String toExternalForm()

Sintaxis:

url.toExternalForm()

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 toExternalForm():

Ejemplo 1 : dada una URL, usaremos la representación de string de la URL

// Java program to show the
// use of the function toExternalForm()
  
import java.net.*;
  
class Solution {
    public static void main(String args[])
    {
        // url  object
        URL url = null;
  
        try {
            // create a URL
            url = new URL("https:// www.geeksforgeeks.org");
  
            // get the  ExternalForm
            String _ExternalForm = url.toExternalForm();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the  ExternalForm
            System.out.println(" String representation= "
                               + _ExternalForm);
        }
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}
Producción:

URL = https:// www.geeksforgeeks.org
 String representation= https:// www.geeksforgeeks.org

Ejemplo 2:

// Java program to show the
// use of the function toExternalForm()
  
import java.net.*;
  
class Solution {
    public static void main(String args[])
    {
        // url  object
        URL url = null;
  
        try {
  
            // create a URL
            url= new URL("https:// www.geeksforgeeks.org#Arnab_Kundu");
              
            // get the  ExternalForm
            String _ExternalForm = url.toExternalForm();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the  ExternalForm
            System.out.println(" String representation= "
                               + _ExternalForm);
        }
  
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}
Producción:

URL = https:// www.geeksforgeeks.org#Arnab_Kundu
 String representation= https:// www.geeksforgeeks.org#Arnab_Kundu

Publicación traducida automáticamente

Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *