位置:首頁 > Java技術 > Java.io包 > Java.io.File.createNewFile()方法實例

Java.io.File.createNewFile()方法實例

java.io.File.createNewFile() 方法自動創建此抽象路徑名的新文件。文件鎖設備應該使用這種方法,文件鎖定會導致協議無法進行可靠地工作。

聲明

以下是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.yiibai;

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: false
delete() method is invoked
File created: true