這篇文章主要講解了Java使用遞歸復制文件夾的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
創(chuàng)新互聯(lián)專注于忻城網站建設服務及定制,我們擁有豐富的企業(yè)做網站經驗。 熱誠為您提供忻城營銷型網站建設,忻城網站制作、忻城網頁設計、忻城網站官網定制、微信小程序服務,打造忻城網絡公司原創(chuàng)品牌,更為您提供忻城網站排名全網營銷落地服務。
遞歸調用copyDir方法實現(xiàn),查詢源文件目錄使用字節(jié)輸入流寫入字節(jié)數(shù)組,如果目標文件目錄沒有就創(chuàng)建目錄,如果迭代出是文件夾使用字節(jié)輸出流對拷文件,直至源文件目錄沒有內容。
/** * 復制文件夾 * @param srcDir 源文件目錄 * @param destDir 目標文件目錄 */ public static void copyDir(String srcDir, String destDir) { if (srcRoot == null) srcRoot = srcDir; //源文件夾 File srcFile = new File(srcDir); //目標文件夾 File destFile = new File(destDir); //判斷srcFile有效性 if (srcFile == null || !srcFile.exists()) return; //創(chuàng)建目標文件夾 if (!destFile.exists()) destFile.mkdirs(); //判斷是否是文件 if (srcFile.isFile()) { //源文件的絕對路徑 String absPath = srcFile.getAbsolutePath(); //取出上級目錄 String parentDir = new File(srcRoot).getParent(); //拷貝文件 copyFile(srcFile.getAbsolutePath(), destDir); } else { //如果是目錄 File[] children = srcFile.listFiles(); if (children != null) { for (File f : children) { copyDir(f.getAbsolutePath(), destDir); } } } }
/** * 復制文件夾 * * @param path 路徑 * @param destDir 目錄 */ public static void copyFile(String path, String destDir) { FileInputStream fis = null; FileOutputStream fos = null; try { /* 準備目錄 取出相對的路徑 創(chuàng)建目標文件所在的文件目錄 */ String tmp = path.substring(srcRoot.length()); String folder = new File(destDir, tmp).getParentFile().getAbsolutePath(); File destFolder = new File(folder); destFolder.mkdirs(); System.out.println(folder); //創(chuàng)建文件輸入流 fis = new FileInputStream(path); //定義新路徑 //創(chuàng)建文件 輸出流 fos = new FileOutputStream(new File(destFolder,new File(path).getName())); //創(chuàng)建字節(jié)數(shù)組進行流對拷 byte[] buf = new byte[1024]; int len = 0; while ((len = fis.read(buf)) != -1) { fos.write(buf, 0, len); } } catch (IOException ex) { ex.printStackTrace(); } finally { try { fis.close(); fos.close(); } catch (IOException e) { e.printStackTrace(); } } }
看完上述內容,是不是對Java使用遞歸復制文件夾的方法有進一步的了解,如果還想學習更多內容,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。