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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。