21
Làm thế nào để có được thư mục làm việc hiện tại trong Java?
Tôi muốn truy cập thư mục làm việc hiện tại của tôi bằng cách sử dụng java. Mã của tôi : String current = new java.io.File( "." ).getCanonicalPath(); System.out.println("Current dir:"+current); String currentDir = System.getProperty("user.dir"); System.out.println("Current dir using System:" +currentDir); Đầu ra: Current dir: C:\WINDOWS\system32 Current dir using System: C:\WINDOWS\system32 Đầu …