資源描述:
《java中file類對文件的幾個常見操作實例總結(jié)》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、Java中,F(xiàn)ile類的常用方法2011-10-27byguo今天看了看File相關(guān)操作,自己編寫了幾個常用的方法,現(xiàn)在整理出來,供初學(xué)者參考。1文件建立2文件移動3文件拷貝4文件夾拷貝5文件夾遍歷文件幾個方法經(jīng)過測試都可用packageguo.IO;importjava.io.File;importjava.io.FileInputStream;importjava.io.FileOutputStream;importjava.io.IOException;importjava.io.InputStr
2、eam;importjava.sql.Timestamp;publicclassSomeMethodForFile{/***@paramargs*/publicstaticvoidmain(String[]args){//TODOAuto-generatedmethodstub//Filefile=newFile(E:\test\test.txt);//window系統(tǒng)下//Filefile=newFile(E:/test/test.txt);//Linux系統(tǒng)下TestFiletestFile=n
3、ewTestFile();//創(chuàng)建新文件Stringpath="I:\test\1\testfile.txt";//testFile.createFile(path);//修改存放路徑及名稱,內(nèi)容也一塊復(fù)制過去了Stringpath2="I:/test2/2/testfile2.txt";//testFile.refileName(path,path2);//復(fù)制一個文件Stringsrc=path;StringtoPath="I:\test3";//testFile.copyFile(src,
4、toPath);//遍歷文件夾StringtargetPath="I:\FGOSI";//testFile.searchFile(targetPath);//拷貝一個文件夾testFile.copyDir(targetPath,"I:\FGOSI-bak");}}classTestFile{/**新建一個文件**@parampath*/publicvoidcreateFile(Stringpath){Filefile=newFile(path);if(!file.exists())//判斷文件是否存
5、在{try{newFile(file.getParent()).mkdirs();//建立上層文件夾file.createNewFile();//創(chuàng)建文件,執(zhí)行此語句才產(chǎn)生該文件}catch(IOExceptione){e.printStackTrace();}}else{System.out.println("文件已存在");}//獲取文件名Stringfilename=file.getName();//獲取文件路徑StringfilePath=file.getPath();//獲取文件絕對路徑Str
6、ingfileAbsolutePath=file.getAbsolutePath();//獲取父親文件路徑StringparentPath=file.getParent();//獲取父親文件名StringparentName=newFile(file.getParent()).getName();//獲取文件大小longsize=file.length();//獲取最后一次修改時間longlastTime=file.lastModified();Stringfilemsg="文件名:"+filename
7、+"路徑:"+filePath+"絕對路徑:"+fileAbsolutePath+"父文件路徑:"+parentPath;filemsg+="文件大小"+size+"最后修改時間:"+newTimestamp(lastTime);System.out.println(filemsg);System.out.println("父親節(jié)點文件夾名稱"+parentName);//file.delete();//刪除文件}/**修改文件路徑及名稱,內(nèi)容也一塊移動過去了,相當(dāng)于“移動”**@p
8、aramfromPath*@paramtoPath*/publicvoidrefileName(StringfromPath,StringtoPath){Filefile1=newFile(fromPath);Filefile2=newFile(toPath);//判斷file2路徑是否存在,不存在則創(chuàng)建if(!file2.exists()){newFile(file2.getParent()).mkdirs();}file1.rename