Java 實例 - 獲取文件的上級目錄
以下實例演示了使用 File 類的 file.getParent() 方法來獲取文件的上級目錄:
/* author by w3cschool.cc Main.java */ import java.io.File; public class Main { public static void main(String[] args) { File file = new File("C:/File/demo.txt"); String strParentDirectory = file.getParent(); System.out.println("文件的上級目錄為 : " + strParentDirectory); } }
以上代碼運行輸出結(jié)果為:
文件的上級目錄為 : File
更多建議: