Método URL getRef() en Java con ejemplos

La función getRef() es parte de la clase URL. La función getRef() devuelve la referencia o la parte ancla de una URL específica.

Firma de función :

public String getRef()

Sintaxis :

url.getRef()

Parámetro: Esta función no requiere ningún parámetro

Tipo de devolución: la función devuelve el tipo de string

Los siguientes programas ilustran el uso de la función getRef():

Ejemplo 1 : dada una URL, obtendremos la Referencia o el ancla usando la función getRef().

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

URL = https:// www.geeksforgeeks.org#Arnab_Kundu
 Reference or anchor=Arnab_Kundu

Ejemplo 2 : ahora no proporcionaremos ningún ancla y usaremos la función para obtener la Referencia o el ancla y ver los resultados.

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

URL = https:// www.geeksforgeeks.org
 Reference or anchor= null

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 *