java怎么删除文件
生活随笔
收集整理的這篇文章主要介紹了
java怎么删除文件
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
java刪除文件的方法:
/* 使用File的delete()方法刪除文件
*/
import java.io.*;
public class Exercise {
public static void main(String args[]) {
try {
// Specify the file name and path
File file = new File("/home/zjz/Desktop/myFile.txt");
/* the delete() method return true if the file
deleted successfully else it return false
*/
if (file.delete()) {
System.out.println(file.getName() + "is deleted");
} else {
System.out.println("Delete failed.");
}
} catch (Exception e) {
System.out.println("Exception occured");
e.printStackTrace();
}
}
}
登錄后復(fù)制
Java文件類以抽象的方式代表文件名和目錄路徑名。該類主要用于文件和目錄的創(chuàng)建、文件的查找和文件的刪除等。java中刪除文件可以使用File.delete()方法實(shí)現(xiàn)。
Java File.delete()方法具有以下語法:
public boolean delete()
登錄后復(fù)制
刪除此抽象路徑名表示的文件或目錄。
更多java知識請關(guān)注java基礎(chǔ)教程欄目。
以上就是java怎么刪除文件的詳細(xì)內(nèi)容,更多請關(guān)注風(fēng)君子博客其它相關(guān)文章!
總結(jié)
以上是生活随笔為你收集整理的java怎么删除文件的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 球球字体颜色代码是什么(汉典球字的基本解
- 下一篇: java:Eclipse:Juno:设置