Método URL getFile() en Java con ejemplos

La función getFile() es parte de la clase URL. La función getFile() devuelve el nombre de archivo de una URL específica. La función getFile() devuelve la ruta y la consulta de la URL.

Firma de función :

public String getFile()

Sintaxis :

url.getFile()

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

Ejemplo 1 : dada una URL, obtendremos el archivo usando la función getFile().

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

URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples/
 File= /url-getprotocol-method-in-java-with-examples/

Ejemplo 2 : ahora vea cómo getFile() es diferente de getPath(). getPath() excluirá la consulta pero getFile() incluirá la consulta

// Java program to show the
// use of the function getFile()
  
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/url-getprotocol-method-in-java-with-examples?title=protocol");
  
            // get the  File
            String _File = url.getFile();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the  File
            System.out.println(" File= " + _File);
        }
  
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}
Producción:

URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol
 File= /url-getprotocol-method-in-java-with-examples?title=protocol

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 *