「Java」常用的文件操作 java的文件类型

目录

1.创建文件对象相关构造器和方法

1.相关方法

1.new File(String pathname)//根据文件路径构建一个File对象

2.new File(File parent,String child)//根据父目录文件+子路径构建一个File对象

3.new File(String parent,String child)//根据父目录+子路径构建一个File对象

package com;

import java.io.File;
import java.io.IOException;

/**
 * @version 1.0
 * @auther Demo龙
 * 演示创建文件
 */
public class FileCreat {
 
    public static void main(String[] args) {
 
        Test test = new Test();
        test.creat01();
        test.creat02();
        test.creat03();
    }
}
class Test {
 
    //方式1:> 1.new File(String pathname)//根据文件路径构建一个File对象
        public void creat01() {
 
            String filePath = "e:\\news1.txt";
            File file = new File(filePath);
            try {
 
                file.createNewFile();
                System.out.println("file文件创建成功");
            } catch (IOException e) {
 
                throw new RuntimeException(e);
            }
        }
        //> 2.new File(File parent,String child)//根据父目录文件+子路径构建一个File对象
        public void creat02() {
 
            File parentfile=new File("e:\\");
            String fileName = "news2.txt";
            File file = new File(parentfile,fileName);
            try {
 
                file.createNewFile();
                System.out.println("file文件创建成功");
            } catch (IOException e) {
 
                throw new RuntimeException(e);
            }
        }
    //> 3.new File(String parent,String child)//根据父目录+子路径构建一个File对象
    public void creat03() {
 
        String parentfile="e:\\";
        String fileName = "news3.txt";
        File file = new File(parentfile,fileName);
        try {
 
            file.createNewFile();
            System.out.println("file文件创建成功");
        } catch (IOException e) {
 
            throw new RuntimeException(e);
        }
    }
}

演示结果

2.获取文件信息

//1.getName()获取文件名

System.out.println(“文件名=”+file.getName());

//2.文件绝对路径file.getAbsolutePath()

System.out.println(“文件绝对路径=”+file.getAbsolutePath());

//3.文件父级目录file.getParent()
    System.out.println("文件父级目录=" + file.getParent());3.
//4.文件大小(字节)file.length()
    System.out.println("文件大小(字节)=" + file.length());
//5.文件是否存在file.exists()
    System.out.println("文件是否存在=" + file.exists());//T
//6.是不是一个文件file.isFile()
    System.out.println("是不是一个文件=" + file.isFile());//T
//7.是不是一个目录file.isDirectory()
    System.out.println("是不是一个目录=" + file.isDirectory());//F
import java.io.File;

/**
 * @version 1.0
 * @auther Demo龙
 * 获取文件信息
 */
public class fileInformation {
 
    public static void main(String[] args) {
 
        Test02 test02 = new Test02();
        test02.info();
    }
}
class Test02{
 
    public void info() {
 
        //获取文件信息
        File file = new File("e:\\news1.txt");
        //调用相应方法,得到对应信息
        //1.getName()获取文件名
        System.out.println("文件名="+file.getName());
        //2.文件绝对路径file.getAbsolutePath()
        System.out.println("文件绝对路径="+file.getAbsolutePath());
        //3.文件父级目录file.getParent()
        System.out.println("文件父级目录=" + file.getParent());
        //4.文件大小(字节)file.length()
        System.out.println("文件大小(字节)=" + file.length());
        //5.文件是否存在file.exists()
        System.out.println("文件是否存在=" + file.exists());//T
        //6.是不是一个文件file.isFile()
        System.out.println("是不是一个文件=" + file.isFile());//T
        //7.是不是一个目录file.isDirectory()
        System.out.println("是不是一个目录=" + file.isDirectory());//F
    }
}

演示结果

3.目录操作和文件删除

mkdir创建一级目录,mkdirs创建多级目录,delete删除空目录或文件

1.//判断 d:\news1.txt 是否存在,如果存在就删除

2. //判断 D:\demo02 是否存在,存在就删除,否则提示不存在

3. //判断 D:\demo\a\b\c 目录是否存在,如果存在就提示已经存在,否则就创建

package com;

import java.io.File;

/**
 * @version 1.0
 * @auther Demo龙
 */
public class directory {
 
    public static void main(String[] args) {
 
        Test03 test03 = new Test03();
        test03.func01();
        test03.func02();
        test03.func03();
    }
}
class Test03{
 
    //判断 d:\\news1.txt 是否存在,如果存在就删除
    public void func01(){
 
        String filePath = "e:\\news1.txt";
        File file = new File(filePath);
        if (file.exists()) {
 
            if (file.delete()) {
 
                System.out.println(filePath + "删除成功");
            } else {
 
                System.out.println(filePath + "删除失败");
            }
        } else {
 
            System.out.println("该文件不存在...");
        }
    }
    //判断 D:\\demo02 是否存在,存在就删除,否则提示不存在
    //这里我们需要体会到,在java编程中,目录也被当做文件
    public void func02(){
 
        String filePath = "D:\\demo02";
        File file = new File(filePath);
        if (file.exists()) {
 
            if (file.delete()) {
 
                System.out.println(filePath + "删除成功");
            } else {
 
                System.out.println(filePath + "删除失败");
            }
        } else {
 
            System.out.println("该目录不存在...");
        }
    }
    //判断 D:\\demo\\a\\b\\c 目录是否存在,如果存在就提示已经存在,否则就创建
    public void func03(){
 
        String directoryPath = "D:\\demo\\a\\b\\c";
        File file = new File(directoryPath);
        if (file.exists()) {
 
            System.out.println(directoryPath + "存在..");
        } else {
 
            if (file.mkdirs()) {
  //创建一级目录使用mkdir() ,创建多级目录使用mkdirs()
                System.out.println(directoryPath + "创建成功..");
            } else {
 
                System.out.println(directoryPath + "创建失败...");
            }
        }


    }

}

演示结果

相关文章

Java之文件删除 java 删除文件夹下的文件

package com.biubiu.utils; import java.io.File; public class Utils { /** * 删除文件 *...

delete()方法删除文件及目录 delete all files

在Java中,可以使用delete()方法来删除文件或目录。该方法是File类中的一个方法,接受一个File对象作为参数,并尝试删除该文件或目录。如果该文件或目录成功删除,该方法返回true,否则返回...

教你如何彻底干净的卸载Java 如何完全卸载java

一、删除环境变量右键此电脑,属性高级系统设置点击环境变量找到Java相关的系统变量,将其删除在系统变量中找到path,将其中与Java相关的删除二、卸载Java打开控制面板“程序和功能”,卸载与Jav...

已满的C盘如何清理无用的文件 c盘已满怎么清理

一、假设电脑(C盘总共80G)为例:1;Program Files 占用了 1.53G2;Program Files(X86) 占用了 4.68G3;ProgramData 占用了 2.8G4; Wi...

快速释放C盘空间,从清理Windows文件夹开始

新安装的系统还没用多久,突然提示系统备份空间不足?光是 C 盘中 Windows 文件夹就已经占用了54.3G空间,再仔细看了一下,其中 WinSxS 文件夹占用了22.1G空间。C盘 Windows...

五年开发,你还记得Java基础代码中的文件I/O操作么?

文件I/O操作作为Java开发中的一个重要组成部分,主要负责Java代码中对于文件的读写操作,可能对于一些长时间不使用Java文件API的开发者来说早都忘记了相关的操作,下面我们就来详细介绍一下Jav...