java 檔案操作

2021-05-25 18:19:15 字數 1412 閱讀 8538

/**

* 複製檔案

* * @param fromfilepath string 目標檔案

* @param tofilepath string 儲存檔案的路徑

* @return boolean 複製成功 true 出錯 false

*/public static boolean copyfile(string fromfilepath,string tofilepath) throws exception

bw.close();

br.close();

}catch (eofexception e)

finally  }

/*** 複製檔案

* * @param fromfilepath string 目標檔案

* @param tofilepath string 儲存檔案的路徑

* @return void

*/  

public static boolean copyfile(string fromfilepath,string tofilepath) throws exception

catch(filenotfoundexception e)

} /**

* 列印目錄下的所有檔案

* * @param path string 目標檔案路徑

* @param filter string 過濾條件

* @param boolean 是否級聯查詢目錄

* @return void

*/public static void listfile(string path,final string filter,boolean all)

file filelist;

if(filter==null || filter.trim().length()==0)

else

});}

for(int i=0;ielse}}

/*** 讀取檔案返回位元組陣列

** @param file file 檔案

* @return byte 返回該檔案的位元組陣列

*/public static byte file2byte(file file)throws exception

fileinputstream fis=new fileinputstream(file);

bufferedinputstream bis=new bufferedinputstream(fis);

byte buffer=new byte[1024*1024];

int len=bis.read(buffer);

string rs=new string(buffer,0,len);

bis.close();

return rs.getbytes();

}

java 檔案操作

public class documentutil else else copyfinished this.copyfolder startfile,desfile return copyfinished 顯示目錄下所有檔案ming public static file getdocuments s...

Java 檔案操作

private jfilechooser chooser filenameextensionfilter filter new filenameextensionfilter allowed file txt jar chooser.setfilefilter filter intvalue cho...

java檔案操作

檔案的建立 檢查與刪除 string path request.getrealpath file f new file path,file.txt if f.exists else 目錄的建立 檢查與刪除 string path request.getrealpath path path sub 將...