构造方法
//将给定的路径名转化为字符串 public File(String pathname); //从父路径名字符串和子路径名字符串创建新的File实例 public File(String parent, String Child); //从父抽象路径名和子路径名字符串创建新File的实例 public File(File parent, String Child);
1.3 常用方法
1.3.1 获取方法
public String getName(); public String getParent(); public String getPath(); public String getAbsolutePath();
代码演示如下:
import java.io.File; public class Test01 { public static void main(String[] args) { String filePath = "src/com/kimari/day01/Test01.java"; String path = "src"; //测试文件路径 File file1 = new File(filePath); System.out.println("文件绝对路径:" + file1.getAbsolutePath()); System.out.println("文件构造路径:" + file1.getPath()); System.out.println("文件名称:" + file1.getName()); System.out.println("文件长度:" + file1.length()); //测试目录路径 File file2 = new File(path); System.out.println("目录绝对路径:" + file2.getAbsolutePath()); System.out.println("目录构造路径:" + file2.getPath()); System.out.println("目录名称:" + file2.getName()); System.out.println("目录长度:" + file2.length()); } } /*输出结果 * 文件绝对路径:D:\Project\java\IO\src\com\kimari\day01\Test01.java * 文件构造路径:src\com\kimari\day01\Test01.java * 文件名称:Test01.java * 文件长度:0 * 目录绝对路径:D:\Project\java\IO\src * 目录构造路径:src * 目录名称:src * 目录长度:0 * */
https://www.cnblogs.com/kimariyb/p/15132055.html#2727384359