以下實例示範了使用File 類別的file.exists() 方法來偵測檔案是否存在:
/* author by w3cschool.cc Main.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 磁碟中存在檔案.txt):
true
以上就是Java 實例- 檢測檔案是否存在的內容,更多相關內容請關注PHP中文網(www.php.cn)!