在 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