真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java中文件刪除的代碼 java中文件刪除的代碼是什么

java刪除項(xiàng)目中的文件代碼

FIle file = new File("/image/123.jpg");

創(chuàng)新互聯(lián)公司于2013年創(chuàng)立,先為和龍等服務(wù)建站,和龍等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為和龍企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

if (file.exists()){

file.delete();

}

使用File對象操作刪除,會(huì)判斷是否存在,如存在就刪了。

如果想找路徑,使用File類的getAbsolutePath()方/法就能得到/絕/對/路/徑/的字符串表示。

例如上面的對、象file,使用

String str = file.getAbsolutePath();

System.out.println(str);

你在/控/制/臺(tái)co/ns/ole/窗口就能看到了。

Java中如何進(jìn)行文件(及文件夾)的新建,移動(dòng),刪除等?給出代碼

File

F=new

File(路徑);/通過將給定路徑名字符串轉(zhuǎn)換為抽象路徑名來創(chuàng)建一個(gè)新

File

實(shí)例。

F.delete();//刪除此抽象路徑名表示的文件或目錄。

文件的移動(dòng)的話,得通過輸入輸出流

FileInputStream

FI=new

FileInputStream(F);

FileOutputStream

FO=new

FileOutputStream(F);

wile(FI.read()!=EOF)

{

FO.write();

}

java 刪除文件中的數(shù)據(jù)

1、如果只是想要文件中的內(nèi)容,可以使用如下代碼:

FileOutputStream?fs?=?new?FileOutputStream(new?File("C:\\buyterms.txt"));

2、如果是想要文件夾中的內(nèi)容,可以使用如下代碼:

package?com.xx;??

import?java.io.File;??

public?class?Test?{??

public?static?void?main(String[]?args)?{??

String?fileRoot?=?"C:/Users/xx/Desktop/xx/xxx";??

delFolder(fileRoot);??

System.out.println("deleted");??

}??

//??//?刪除完文件后刪除文件夾??

//??//?param?folderPath?文件夾完整絕對路徑??

public?static?void?delFolder(String?folderPath)?{??

try?{??

delAllFile(folderPath);?//?刪除完里面所有內(nèi)容??

//不想刪除文佳夾隱藏下面??

//??????????String?filePath?=?folderPath;??

//??????????filePath?=?filePath.toString();??

//??????????java.io.File?myFilePath?=?new?java.io.File(filePath);??

//??????????myFilePath.delete();?//?刪除空文件夾??

}?catch?(Exception?e)?{??

e.printStackTrace();??

}??

}??

//?刪除指定文件夾下所有文件??

//?param?path?文件夾完整絕對路徑??

public?static?boolean?delAllFile(String?path)?{??

boolean?flag?=?false;??

File?file?=?new?File(path);??

if?(!file.exists())?{??

return?flag;??

}??

if?(!file.isDirectory())?{??

return?flag;??

}??

String[]?tempList?=?file.list();??

File?temp?=?null;??

for?(int?i?=?0;?i??tempList.length;?i++)?{??

if?(path.endsWith(File.separator))?{??

temp?=?new?File(path?+?tempList[i]);??

}?else?{??

temp?=?new?File(path?+?File.separator?+?tempList[i]);??

}??

if?(temp.isFile())?{??

temp.delete();??

}??

if?(temp.isDirectory())?{??

delAllFile(path?+?"/"?+?tempList[i]);//?先刪除文件夾里面的文件??

//??????????????delFolder(path?+?"/"?+?tempList[i]);//?再刪除空文件夾??

flag?=?true;??

}??

}??

return?flag;??

}??

}


文章標(biāo)題:java中文件刪除的代碼 java中文件刪除的代碼是什么
標(biāo)題URL:http://weahome.cn/article/docoioh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部