使用File 類別的file.exists() 方法來偵測檔案是否存在:(建議:java影片教學)
import java.io.File; public class Main { public static void main(String[] args) { File file = new File("C:/java.txt"); System.out.println(file.exists()); } }
以上程式碼執行輸出結果為(如果你的C 碟中存在檔案java.txt):
true
exists()
public boolean exists()測試此抽象路徑名稱表示的檔案或目錄是否存在.
返回:當且僅當此抽象路徑名表示的文件或目錄存在時,返回true;否則返回false;
拋出:SecurityException如果存在安全管理器,且其SecurityManager.checkRead(java.lang.String)方法拒絕對檔案或目錄進行寫入存取.
#更多java知識請關注java基礎教學欄位。
以上是java判斷是否存在文件的方法介紹(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!