getAbsolutePath()方法是File类的一部分。该函数返回给定文件对象的绝对路径名。如果文件对象的路径名是绝对路径,那么它仅返回当前文件对象的路径。
例如:如果我们使用路径“program.txt”创建一个文件对象,则它指向存在于可执行程序所在目录中的文件(如果您使用的是IDE,它将指向保存该程序的文件)。此处上述文件的路径为“program.txt”,但该路径不是绝对路径(即不完整)。函数getAbsolutePath()将从根目录返回绝对(完整)路径。如果使用绝对路径创建文件对象,则getPath()和getAbsolutePath()将给出相同的结果。
函数签名:
public String getAbsolutePath()
函数语法:
file.getAbsolutePath()
参数:该函数不接受任何参数。
返回值:该函数返回一个String值,它是给定File对象的绝对路径。
异常:如果无法访问必需的属性值,则此方法将引发Security Exception。
下面的程序将说明getAbsolutePath()方法的使用:
范例1:当前工作目录中有一个名为“program.txt”的文件。
// Java program to demonstrate the
// use of getAbsolutePath() 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");
// Get the absolute path of file f
String absolute = f.getAbsolutePath();
// Display the file path of the file object
// and also the file path of absolute file
System.out.println("Original path: "
+ f.getPath());
System.out.println("Absolute path: "
+ absolute);
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
输出:
Original Path: program.txt Absolute Path: C:\Users\pc\eclipse-workspace1\arnab\program.txt
范例2:当前工作目录中有一个名为“program”的目录。
// Java program to demonstrate the
// use of getAbsolutePath() function
import java.io.*;
public class solution {
public static void main(String try-catch {
// try catch block to handle exceptions
try {
// Create a file object
File f = new File("program");
// Get the absolute path of file f
String absolute = f.getAbsolutePath();
// Display the file path of the file object
// and also the file path of absolute file
System.out.println("Original path: "
+ f.getPath());
System.out.println("Absolute path: "
+ absolute);
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
输出:
Original Path: program Absolute Path: C:\Users\pc\eclipse-workspace1\arnab\program
范例3:“f:\”目录中名为“f:\program.txt”的文件。
// Java program to demonstrate the
// use of getAbsolutePath() 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("f:\\program.txt");
// get the absolute path
// of file f
String absolute = f.getAbsolutePath();
// display the file path of the file object
// and also the file path of absolute file
System.out.println("Original path: "
+ f.getPath());
System.out.println("Absolute path: "
+ absolute);
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
输出:
Original file path: f:\program.txt Absolute file path: f:\program.txt
这些程序可能无法在在线IDE中运行。请使用离线IDE并设置文件的路径
相关用法
- Java File length()用法及代码示例
- Java File delete()用法及代码示例
- Java File getName()用法及代码示例
- Java File createTempFile()用法及代码示例
- Java File getFreeSpace()用法及代码示例
- Java File isHidden()用法及代码示例
- Java File getAbsoluteFile()用法及代码示例
- Java File lastModified()用法及代码示例
- Java File createNewFile()用法及代码示例
- Java File getCanonicalPath()用法及代码示例
- Java File isFile()用法及代码示例
- Java File exists()用法及代码示例
- Java File getTotalSpace()用法及代码示例
- Java File setExecutable()用法及代码示例
- Java File mkdir()用法及代码示例
注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 File getAbsolutePath() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。