本例以Windows, JDK1.7 为基础,来演示使用Java 获取当前目录(文件夹)。

获取当前的目录,可以采用使用系统的“user.dir”属性来得到。

获取当前目录

FileCurrentDirectory.java

1
2
3
4
5
6
7
8
9
10
11
12
package com.devnp.io;

public class FileCurrentDirectory {

public static void main(String[] args) {
// TODO Auto-generated method stub
String currentDirectory = System.getProperty("user.dir");

System.out.println("Current Directory : " + currentDirectory);
}

}
运行
运行当前代码:
1
Current Directory : D:\eclipseworklace\personworkplace\Devnp-IO