當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java File getPath()用法及代碼示例


getPath()方法是File類的一部分。此函數返回給定文件對象的路徑。該函數返回一個字符串對象,其中包含給定文件對象的路徑。

函數簽名:

public String getPath()

函數語法:


file.getPath()

參數:該函數不接受任何參數。

返回值:該函數返回一個String值,它是給定File對象的Path。

下麵的程序將說明getPath()函數的用法:

範例1:我們得到了文件的文件對象,我們必須獲取文件對象的路徑。

// Java program to demonstrate the 
// use of getPath() function 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // try catch block to handle exceptions 
        try { 
  
            // Create a file object 
            File f 
                = new File("c:\\users\\program.txt"); 
  
            // Get the path of the given file f 
            String path = f.getPath(); 
  
            // Display the file path of the file object 
            System.out.println("File path : " + path); 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

File path : c:\users\program.txt

範例2:我們得到了目錄的文件對象,我們必須獲取文件對象的路徑。

// Java program to demonstrate the 
// use of getPath() function 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // try catch block to handle exceptions 
        try { 
  
            // Create a file object 
            File f = new File("c:\\users\\program"); 
  
            // Get the path of the given file f 
            String path = f.getPath(); 
  
            // Display the file path of the file object 
            System.out.println("File path : " + path); 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

File path : c:\users\program

這些程序可能無法在在線IDE中運行。請使用離線IDE並設置文件的路徑



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 File getPath() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。