您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了java將一個(gè)目錄下的所有文件復(fù)制n次的具體代碼,供大家參考,具體內(nèi)容如下
1. 文件復(fù)制示意圖
2.java程序
(1).調(diào)用
final static String SOURCESTRING = "/Users/amarao/360/download/test/"; final static String OUTPUTSTRING = "/Users/amarao/360/download/test4/"; public static void main(String[] args) throws IOException { // 將SOURCESTRING下的文件復(fù)制3次到OUTPUTSTRING目錄下 LCopyFileUtils.copyFile(SOURCESTRING, OUTPUTSTRING, 3); }
(2).java工具類
/** * * 參考: * Java將一個(gè)目錄下的所有數(shù)據(jù)復(fù)制到另一個(gè)目錄下:https://www.jb51.net/article/167726.htm * Java復(fù)制文件的4種方式:https://www.jb51.net/article/70412.htm * */ public class LCopyFileUtils { /** * 復(fù)制srcPath路徑下的文件到destPath目錄下 * * @param srcPath 源文件路徑 * @param destPath 輸出路徑 * @param count 每個(gè)文件的復(fù)制次數(shù) * @return 是否復(fù)制成功 */ public static boolean copyFile(String srcPath, String destPath, int count) throws IOException { File fileSrc = new File(srcPath); File[] files = fileSrc.listFiles(); if (files == null) { System.out.println("Error:源文件夾下沒(méi)有文件"); return false; } for (int i = 0; i < files.length; i++) { if (files[i].isFile()) { File file = null; String fileName = files[i].getName(); String filePrefix = fileName.substring(0, fileName.lastIndexOf(".")); String fileSuffix = fileName.substring(fileName.lastIndexOf(".")); // 每個(gè)文件復(fù)制Count次 for (int j = 0; j < count; j++) { file = new File(destPath + File.separator + filePrefix + "_" + i + "_" + j + fileSuffix);// 創(chuàng)建文件 copyFileUsingFileChannels(files[i], file); } } } return true; } /** * 復(fù)制文件srcFile到destFile * * @param srcFile 源文件 * @param destFile 目的文件 */ public static void copyFileUsingFileChannels(File srcFile, File destFile) throws IOException { FileChannel inputChannel = null; FileChannel outputChannel = null; try { inputChannel = new FileInputStream(srcFile).getChannel(); outputChannel = new FileOutputStream(destFile).getChannel(); outputChannel.transferFrom(inputChannel, 0, inputChannel.size()); System.out.println("復(fù)制文件成功:" + srcFile.getName() + " -> " + destFile.getName()); } catch (Exception e) { System.out.println("Error:復(fù)制文件失?。? + srcFile.getName() + " -> " + destFile.getName()); } finally { if (inputChannel != null) { inputChannel.close(); } if (outputChannel != null) { outputChannel.close(); } } } }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。