La función getAuthority() es parte de la clase URL . La función getAuthority() devuelve la autoridad de una URL específica. La parte Autoridad de la URL es el nombre de host y el puerto de la URL.
Función Firma
public String getAuthority()
Sintaxis
url.getAuthority()
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 getAuthority() 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 Authority String authority = url.getAuthority(); // display the URL System.out.println("URL = " + url); // display the Authority System.out.println("Authority = " + authority); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } }
Producción:
URL = https:// www.geeksforgeeks.org Authority = www.geeksforgeeks.org
Ejemplo 2: La diferencia entre las funciones getAuthority() y getHost() es que getAuthority() devuelve el host junto con el puerto, pero getHost() devuelve solo el nombre del host.
// Java program to show the // use of the function getAuthority() 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: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 Authority 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
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA