📜  Java中的 URL getFile() 方法和示例

📅  最后修改于: 2022-05-13 01:54:39.747000             🧑  作者: Mango

Java中的 URL getFile() 方法和示例

getFile()函数是 URL 类的一部分。函数getFile() 返回指定 URL 的文件名。 getFile()函数返回 URL 的路径和查询。

函数签名

public String getFile()

语法

url.getFile()

参数:此函数不需要任何参数

返回类型:函数返回字符串类型

下面的程序说明了 getFile()函数的使用:

示例 1 :给定一个 URL,我们将使用 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);
        }
    }
}
输出:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples/
 File= /url-getprotocol-method-in-java-with-examples/

示例 2 :现在看看 getFile() 与 getPath() 有何不同。 getPath() 将排除查询,但 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?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);
        }
    }
}
输出:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol
 File= /url-getprotocol-method-in-java-with-examples?title=protocol