La función getPath() es parte de la clase URL . La función getPath() devuelve el nombre de la ruta de una URL específica.
Firma de función :
public String getPath()
Sintaxis :
url.getPath()
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 getPath():
Ejemplo 1 : dada una URL, obtendremos la ruta usando la función getPath().
// Java program to show the // use of the function getPath() 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 Path String _Path = url.getPath(); // display the URL System.out.println("URL = " + url); // display the Path System.out.println(" Path= " + _Path); } // 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/ Path= /url-getprotocol-method-in-java-with-examples/
Ejemplo 2 : ahora vea cómo getPath() es diferente de getFile(). getPath() excluirá la consulta pero getFile() incluirá la consulta
// Java program to show the // use of the function getPath() 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 Path String _Path = url.getPath(); // display the URL System.out.println("URL = " + url); // display the Path System.out.println(" Path= " + _Path); } // 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 Path= /url-getprotocol-method-in-java-with-examples
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA