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


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



描述

這個java.io.File.exists()方法測試由此抽象路徑名定義的文件或目錄是否存在。

聲明

以下是聲明java.io.File.exists()方法≫

public boolean exists()

參數

NA

返回值

當且僅當抽象路徑名定義的文件存在時,該方法返回布爾值 true;否則是假的。

異常

NA

示例

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

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 files
         f = new File("test.txt");
         
         // create new file in the system
         f.createNewFile();
         
         // tests if file exists
         bool = f.exists();
         
         // prints
         System.out.println("File exists:"+bool);
         
         if(bool == true) {
            // delete() invoked
            f.delete();
            System.out.println("delete() invoked");
         }
         
         // tests if file exists
         bool = f.exists();
         
         // prints
         System.out.print("File exists:"+bool);
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

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

File exists:true
delete() invoked
File exists:false

相關用法


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