在Java中,可以使用System.getProperty("user.dir")
來獲取當前工作目錄的路徑。
示例代碼如下:
public class Main {
public static void main(String[] args) {
String currentPath = System.getProperty("user.dir");
System.out.println("當前路徑:" + currentPath);
}
}
運行以上代碼,將輸出當前工作目錄的路徑。