小編給大家分享一下java如何通過字節(jié)緩沖流實(shí)現(xiàn)文件拷貝,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
伊通網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)公司于2013年創(chuàng)立到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)公司。
通過字節(jié)緩沖流實(shí)現(xiàn)文件拷貝
/** * 通過字節(jié)緩沖流實(shí)現(xiàn)文件的拷貝 * * @param sourcePath 源文件路徑 * @param targetPath 目標(biāo)文件路徑 */ public static void copyFileByBuffered(String sourcePath, String targetPath){ //源文件路徑 File source = new File(sourcePath); //目標(biāo)文件路徑 File target = new File(targetPath); //如果源文件不存在則不能拷貝 if (!source.exists()) { return; } //如果目標(biāo)文件目錄不存在則創(chuàng)建 if (!target.getParentFile().exists()) { target.getParentFile().mkdirs(); } InputStream in = null; OutputStream out = null; try { //字節(jié)緩沖輸入流和字節(jié)緩沖輸出流 in = new BufferedInputStream(new FileInputStream(source)); out = new BufferedOutputStream(new FileOutputStream(target)); byte[] b = new byte[1024]; int temp = 0; //每次讀取一個(gè)1024的字節(jié)數(shù)組 while((temp = in.read(b)) != -1){ //輸出到文件 out.write(b,0,temp); } } catch (Exception e) { e.printStackTrace(); }finally { //關(guān)閉流 try { if (in != null) { in.close(); } if (out != null) { out.close(); } } catch (IOException e) { e.printStackTrace(); } } }
以上是“java如何通過字節(jié)緩沖流實(shí)現(xiàn)文件拷貝”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!