Método URL getHost() en Java con ejemplos

La función getHost() es parte de la clase URL . La función getHost() devuelve el host de una URL específica. La parte Host de la URL es el nombre de host de la URL. El formato del host se ajusta a RFC 2732.

Función Firma

public String getHost()

Sintaxis

url.getHost()

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

Ejemplo 1:

// Java program to show the use
// of the function getHost()
  
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 Host
            String Host = url.getHost();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the Host
            System.out.println("Host = " + Host);
        }
  
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}
Producción:

URL = https:// www.geeksforgeeks.org
Host =  www.geeksforgeeks.org

Ejemplo 2:

// Java program to show the
// use of the function getHost()
  
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:80/url-samefile-method-in-java-with-examples/");
  
            // get the Authority
            String authority
                = url.getAuthority();
  
            // get the Host
            String host = url.getHost();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the Host
            System.out.println("Authority = "
                               + authority);
  
            // display the Host
            System.out.println("Host = " + host);
        }
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}
Producción:

URL = https:// www.geeksforgeeks.org:80/url-samefile-method-in-java-with-examples/
Authority =  www.geeksforgeeks.org:80
Host =  www.geeksforgeeks.org

Ejemplo 3: si creamos una URL sin nombre de host y solicitamos el host mediante la función getHost(), la función devuelve una string en blanco.

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

URL = https:
Host =

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 *