要獲取文件的絕對路徑,可以使用File類的getAbsolutePath()方法。示例如下:
import java.io.File;
public class GetAbsolutePathExample {
public static void main(String[] args) {
File file = new File("example.txt");
String absolutePath = file.getAbsolutePath();
System.out.println("Absolute Path: " + absolutePath);
}
}
在上面的示例中,我們創建了一個File對象來表示一個文件,并使用getAbsolutePath()方法獲取該文件的絕對路徑。最后,我們將絕對路徑打印出來。