Java 實(shí)例 - 刪除文件
以下實(shí)例演示了使用 delete() 方法將文件刪除:
/* author by w3cschool.cc Main.java */ import java.io.*; public class Main { public static void main(String[] args) { try{ File file = new File("c:\\test.txt"); if(file.delete()){ System.out.println(file.getName() + " 文件已被刪除!"); }else{ System.out.println("文件刪除失敗!"); } }catch(Exception e){ e.printStackTrace(); } } }
以上代碼運(yùn)行輸出結(jié)果為(需要在 C 盤上先創(chuàng)建 test.txt 文件):
test.txt 文件已被刪除!
更多建議: