Java 实例 - 获取文件的上级目录

Java 实例 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);
   }
}

以上代码运行输出结果为:

文件的上级目录为 : File

Java 实例 Java 实例

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号