在Java中,可以使用File
类和Paths
类来获取相对路径文件。以下是两种方式:
Paths
类:Path filePath = Paths.get("src", "folder", "file.txt");
File file = filePath.toFile();
System.out.println(file.getAbsolutePath());
File
类:File file = new File("src/folder/file.txt");
System.out.println(file.getAbsolutePath());
这两种方式都可以用于获取相对路径文件,并且可以通过getAbsolutePath()
方法获取文件的绝对路径。需要注意的是,在使用相对路径时,要确保相对路径是相对于当前工作目录的。