当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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


相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 URL getFile() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。