Java查找当前目录
如何找到当前工作目录?
解决方法
下面的示例演示如何使用getProperty()方法来获取当前目录。
class Main { public static void main(String[] args) { String curDir = System.getProperty("user.dir"); System.out.println("You currently working in :" + curDir+ ": Directory"); } }
结果
上面的代码示例将产生以下结果。
You currently working in :C:Documents and Settingsuser My DocumentsNetBeansProjectsTestApp: Directory