温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

java将一个目录下的所有文件复制n次

发布时间:2020-10-15 17:48:53 来源:脚本之家 阅读:141 作者:Amarao 栏目:编程语言

本文实例为大家分享了java将一个目录下的所有文件复制n次的具体代码,供大家参考,具体内容如下

1. 文件复制示意图

 java将一个目录下的所有文件复制n次

2.java程序

(1).调用

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下的文件复制3次到OUTPUTSTRING目录下
 LCopyFileUtils.copyFile(SOURCESTRING, OUTPUTSTRING, 3);
 }

(2).java工具类

/**
 *
 * 参考:
 * Java将一个目录下的所有数据复制到另一个目录下:https://www.jb51.net/article/167726.htm
 * Java复制文件的4种方式:https://www.jb51.net/article/70412.htm
 * */
public class LCopyFileUtils {
 
 /**
 * 复制srcPath路径下的文件到destPath目录下
 *
 * @param srcPath 源文件路径
 * @param destPath 输出路径
 * @param count 每个文件的复制次数
 * @return 是否复制成功
 */
 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:源文件夹下没有文件");
  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("."));
 
  // 每个文件复制Count次
  for (int j = 0; j < count; j++) {
   file = new File(destPath + File.separator + filePrefix + "_" + i + "_" + j + fileSuffix);// 创建文件
   copyFileUsingFileChannels(files[i], file);
  }
  }
 }
 return true;
 }
 
 /**
 * 复制文件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("复制文件成功:" + srcFile.getName() + " -> " + destFile.getName());
 } catch (Exception e) {
  System.out.println("Error:复制文件失败:" + srcFile.getName() + " -> " + destFile.getName());
 } finally {
  if (inputChannel != null) {
  inputChannel.close();
  }
  if (outputChannel != null) {
  outputChannel.close();
  }
 }
 }
 
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI