Java中的 File getAbsoluteFile() 方法及示例
getAbsoluteFile()方法是 File 类的一部分。此函数返回给定抽象路径名的绝对 File 对象。绝对文件或目录指向与给定 File 对象相同的文件或目录。
例如:如果我们使用路径作为“program.txt”创建一个文件对象,它指向保存可执行程序的同一目录中的文件(如果您使用的是 IDE,它将指向您所在的文件)已保存程序)。这里上面提到的文件的路径是“program.txt”,但是这个路径不是绝对的(即不完整的)。函数getAbsoluteFile() 将返回一个文件,其路径将是根目录的绝对(完整)路径。如果使用绝对路径创建文件对象,则 getAbsoluteFile() 将返回与当前文件类似的文件。
函数签名:
public File getAbsoluteFile()
函数语法:
file.getAbsoluteFile()
参数:此函数不接受任何参数。
返回值:该函数返回表示与抽象路径名相同的文件或目录的绝对文件对象。
异常:如果无法访问所需的属性值,此方法将引发安全异常。
下面的程序将说明 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并设置文件路径