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


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



描述

這個java.io.File.createNewFile()方法原子地創建一個以此抽象路徑名命名的新文件。對於 file-locking,應使用 FileLock 工具代替此方法,因為無法使生成的協議可靠地工作。

聲明

以下是聲明java.io.File.createNewFile()方法 -

public boolean createNewFile()

參數

NA

返回值

如果指定的文件不存在並且已成功創建,則此方法返回 true。如果文件存在,該方法返回 false。

異常

  • IOException− 如果發生 I/O 錯誤

  • SecurityException− 如果 SecurityManager.checkWrite(java.lang.String) 方法拒絕對文件的寫訪問

示例

下麵的例子展示了 java.io.File.createNewFile() 方法的用法。

package com.tutorialspoint;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      boolean bool = false;
      
      try {
         // create new file
         f = new File("test.txt");
         
         // tries to create new file in the system
         bool = f.createNewFile();
         
         // prints
         System.out.println("File created:"+bool);
         
         // deletes file from the system
         f.delete();
         
         // delete() is invoked
         System.out.println("delete() method is invoked");
         
         // tries to create new file in the system
         bool = f.createNewFile();
         
         // print
         System.out.println("File created:"+bool);
            
      } catch(Exception e) {
         e.printStackTrace();
      }
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

File created:true
delete() method is invoked
File created:true

相關用法


注:本文由純淨天空篩選整理自 Java.io.File.createNewFile() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。