Java 范例 - 获取文件的上级目录
File 类的 file.getParent() 方法可以获取文件的上级目录
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); } }
编译运行以上 Java 代码,输出结果如下
文件的上级目录为 : File