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上是/
)。