在Java中,可以使用`System.getProperty("user.dir")`來獲取當前工作目錄的路徑。示例如下:
```java
public class GetCurrentPath {
public static void main(String[] args) {
String currentPath = System.getProperty("user.dir");
System.out.println("Current working directory is: " + currentPath);
}
}
```
運行該程序將會輸出當前工作目錄的路徑。