在 Java 中创建不存在的文件

Sheeraz Gul 2022年5月31日
在 Java 中创建不存在的文件

在 Java 中创建文件是一项简单的操作。本教程演示了如何在 Java 中创建不存在的文件。

在 Java 中创建不存在的文件

Java 中的 java.io.File 类有一个 createNewFile() 方法,仅当文件不存在时才会使用给定的名称创建一个新的空文件。如果文件已创建,它将返回 true,如果文件已存在,则返回 false

让我们尝试一个例子。

package delftstack;

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

public class Create_File {

    public static void main(String[] args) {
        try {

        File New_File = new File("NewDelftstack.txt");

        if (New_File.createNewFile()){
            System.out.println("The file is created successfully!");
        }
        else{
            System.out.println("The file already exists.");
        }

        }
        catch (IOException e) {
            e.printStackTrace();
        }

    }

}

如果它不存在,上面的代码将创建一个具有给定名称的文件。见输出:

The file is created successfully!
Author: Sheeraz Gul
Sheeraz Gul avatar Sheeraz Gul avatar

Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.

LinkedIn Facebook

相关文章 - Java File