要获取文件的绝对路径,可以使用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()方法获取该文件的绝对路径。最后,我们将绝对路径打印出来。