當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java File createNewFile()用法及代碼示例


createNewFile()函數是Java中File類的一部分。此函數創建新的空文件。如果抽象文件路徑不存在並且創建了新文件,則該函數返回true。如果文件名已經存在,則返回false。

函數簽名:

public boolean createNewFile()

用法:


boolean var = file.createNewFile();

參數:此方法不接受任何參數。

返回類型:該函數返回表示是否創建新文件的布爾數據類型。

異常:此方法引發以下異常:

  • IO異常:如果發生輸入輸出錯誤
  • 安全異常 :如果對文件的寫訪問被拒絕

以下示例程序旨在說明createNewFile()函數的用法:

範例1:文件“F:\\program.txt”是F:目錄中的現有文件。

// Java program to demonstrate 
// createNewFile() method of File Class 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        try { 
  
            // Get the file 
            File f = new File("F:\\program.txt"); 
  
            // Create new file 
            // if it does not exist 
            if (f.createNewFile()) 
                System.out.println("File created"); 
            else
                System.out.println("File already exists"); 
        } 
        catch (Exception e) { 
            System.err.println(e); 
        } 
    } 
}

輸出:

File created

範例2:文件“F:\\program1.txt”不存在

// Java program to demonstrate 
// createNewFile() method of File Class 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        try { 
  
            // Get the file 
            File f = new File("F:\\program1.txt"); 
  
            // Create new file 
            // if it does not exist 
            if (f.createNewFile()) 
                System.out.println("File created"); 
            else
                System.out.println("File already exists"); 
        } 
        catch (Exception e) { 
            System.err.println(e); 
        } 
    } 
}

輸出:

File already exists

注意:程序可能無法在在線IDE中運行。請使用離線IDE並設置文件的路徑。



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 File createNewFile() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。