• 【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);
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55

    演示结果
    在这里插入图片描述
    在这里插入图片描述

    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.
    
    • 1
    • 2
        //4.文件大小(字节)file.length()
        System.out.println("文件大小(字节)=" + file.length());
    
    • 1
    • 2
        //5.文件是否存在file.exists()
        System.out.println("文件是否存在=" + file.exists());//T
    
    • 1
    • 2
        //6.是不是一个文件file.isFile()
        System.out.println("是不是一个文件=" + file.isFile());//T
    
    • 1
    • 2
        //7.是不是一个目录file.isDirectory()
        System.out.println("是不是一个目录=" + file.isDirectory());//F
    
    • 1
    • 2
    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
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    演示结果
    在这里插入图片描述
    在这里插入图片描述

    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 + "创建失败...");
                }
            }
    
    
        }
    
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65

    演示结果
    在这里插入图片描述

  • 相关阅读:
    神经网络简介
    【公网远程手机Android服务器】安卓Termux搭建Web服务器
    jasypt 配置文件加解密
    Go语言学习(三)包的使用
    [LeetCode]-队列&优先队列/堆
    验证码识别之OCR识别
    【cmake开发(8)】cmake 编译无法找到库,和编译通过后运行时无法找到库
    NOIP2022 (退役录)Goodbye OI!
    C/C++ 恨透了 double free or corruption
    软件项目尾期,客户提新需求怎么办?
  • 原文地址:https://blog.csdn.net/qq_59708493/article/details/126075606