在Java中,可以使用以下代碼獲取當前項目的路徑地址:
System.getProperty("user.dir")
方法獲取當前項目的工作目錄路徑,代碼如下:String projectPath = System.getProperty("user.dir");
System.out.println("當前項目路徑:" + projectPath);
ClassLoader
類的getResource()
方法獲取當前類的絕對路徑,然后通過截取可以得到當前項目的路徑,代碼如下:String classPath = getClass().getResource("").getPath();
String projectPath = classPath.substring(0, classPath.indexOf("target"));
System.out.println("當前項目路徑:" + projectPath);
Paths.get("").toAbsolutePath().toString()
方法獲取當前項目的絕對路徑,代碼如下:String projectPath = Paths.get("").toAbsolutePath().toString();
System.out.println("當前項目路徑:" + projectPath);
以上方法都可以用來獲取當前項目的路徑地址,具體使用哪種方法取決于你的需求和項目結構。