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


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


getAbsoluteFile()方法是File類的一部分。此函數返回給定抽象路徑名的絕對File對象。絕對文件或目錄指向與給定File對象相同的文件或目錄。

例如:如果我們使用路徑“program.txt”創建文件對象,則該文件對象指向存在於可執行程序所在目錄的文件(如果使用的是IDE,它將指向保存程序的文件) )。此處上述文件的路徑為“program.txt”,但該路徑不是絕對路徑(即不完整)。函數getAbsoluteFile()將返回一個文件,該文件的路徑將是根目錄中的絕對(完整)路徑。如果使用絕對路徑創建文件對象,則getAbsoluteFile()將返回與當前文件相似的文件。

函數簽名:


public File getAbsoluteFile()

函數語法:

file.getAbsoluteFile()

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

返回值:該函數返回表示與抽象路徑名相同的文件或目錄的絕對文件對象。

異常:如果無法訪問必需的屬性值,則此方法將引發Security Exception。

下麵的程序將說明getAbsolutePath()方法的使用:

範例1:在當前的工作目錄中,我們有一個名為“program.txt”的文件。

// Java program to demonstrate the 
// use of getAbsoluteFile() 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("program.txt"); 
  
            // create a file with the absolute path 
            // of file f 
            File absolute = f.getAbsoluteFile(); 
  
            // display the file path of the file object 
            // and also the file path of absolute file 
            System.out.println("Original file path : "
                               + f.getPath()); 
            System.out.println("Absolute file path : "
                               + absolute.getPath()); 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

Original file path : program.txt
Absolute file path : C:\Users\pc\eclipse-workspace1\arnab\program.txt

範例2:在當前工作目錄中,我們有一個名為“program”的目錄。

// Java program to demonstrate the 
// use of getAbsoluteFile() 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("program"); 
  
            // create a file with the absolute path 
            // of file f 
            File absolute = f.getAbsoluteFile(); 
  
            // display the file path of the file object 
            // and also the file path of absolute file 
            System.out.println("Original file path : "
                               + f.getPath()); 
            System.out.println("Absolute file path : "
                               + absolute.getPath()); 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

Original file path : program
Absolute file path : C:\Users\pc\eclipse-workspace1\arnab\program

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



相關用法


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