Java中获取相对路径的方法有多种。以下是其中一种常见的方法:
System.getProperty("user.dir")
方法获取当前工作目录(即项目的根目录)的绝对路径。String currentPath = System.getProperty("user.dir");
String relativePath = "src/main/resources/file.txt";
String currentPath = System.getProperty("user.dir");
String absolutePath = currentPath + File.separator + relativePath;
File file = new File(absolutePath);
请注意,以上方法中的File.separator
是系统相关的文件分隔符(在Windows上是\
,在Linux上是/
)。