Tìm thư mục hiện tại trong Java



Miêu tả vấn đề

Cách tìm thư mục đang thực hành hiện tại trong Java?

Giải pháp

Ví dụ sau minh họa cách lấy thư mục hiện tại bởi sử dụng phương thức getProperty() trong Java.

class Main {
   public static void main(String[] args) {
      String curDir = System.getProperty("user.dir");
      System.out.println("You currently working in :" 
      + curDir+ ": Directory");
   }
}

Kết quả

Code trên sẽ cho kết quả sau:

You currently working in :C:\Documents and Settings\user\
My Documents\NetBeansProjects\TestApp: Directory

thu_muc_trong_java.jsp