Java: 复制文件最快方法
利用Java复制文件到处都可以用到,这里总结了一个类供大家参考。里面总共有两个方法:
public static boolean copyFile(String srcFileName, String destFileName,boolean overlay);
public static boolean copyDirectory(String srcDirName, String destDirName,boolean overlay) ;
其中:
srcFileName 待复制的文件名
descFileName 目标文件名
overlay 如果目标文件存在,是否覆盖
如果复制成功返回true,否则返回false
代码:
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.FileNotFoundException;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.OutputStream;
- import javax.swing.JOptionPane;
- /**
- * 复制文件或文件夹
- *
- * zww
- */
- public class CopyFileUtil {
- private static String MESSAGE = "";
- /**
- * 复制单个文件
- *
- * @param srcFileName
- * 待复制的文件名
- * @param descFileName
- * 目标文件名
- * @param overlay
- * 如果目标文件存在,是否覆盖
- * @return 如果复制成功返回true,否则返回false
- */
- public static boolean copyFile(String srcFileName, String destFileName,
- boolean overlay) {
- File srcFile = new File(srcFileName);
- // 判断源文件是否存在
- if (!srcFile.exists()) {
- MESSAGE = "源文件:" + srcFileName + "不存在!";
- JOptionPane.showMessageDialog(null, MESSAGE);
- return false;
- } else if (!srcFile.isFile()) {
- MESSAGE = "复制文件失败,源文件:" + srcFileName + "不是一个文件!";
- JOptionPane.showMessageDialog(null, MESSAGE);
- return false;
- }
- // 判断目标文件是否存在
- File destFile = new File(destFileName);
- if (destFile.exists()) {
- // 如果目标文件存在并允许覆盖
- if (overlay) {
- // 删除已经存在的目标文件,无论目标文件是目录还是单个文件
- new File(destFileName).delete();
- }
- } else {
- // 如果目标文件所在目录不存在,则创建目录
- if (!destFile.getParentFile().exists()) {
- // 目标文件所在目录不存在
- if (!destFile.getParentFile().mkdirs()) {
- // 复制文件失败:创建目标文件所在目录失败
- return false;
- }
- }
- }
- // 复制文件
- int byteread = 0; // 读取的字节数
- InputStream in = null;
- OutputStream out = null;
- try {
- in = new FileInputStream(srcFile);
- out = new FileOutputStream(destFile);
- byte[] buffer = new byte[1024];
- while ((byteread = in.read(buffer)) != -1) {
- out.write(buffer, 0, byteread);
- }
- return true;
- } catch (FileNotFoundException e) {
- return false;
- } catch (IOException e) {
- return false;
- } finally {
- try {
- if (out != null)
- out.close();
- if (in != null)
- in.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
- /**
- * 复制整个目录的内容
- *
- * @param srcDirName
- * 待复制目录的目录名
- * @param destDirName
- * 目标目录名
- * @param overlay
- * 如果目标目录存在,是否覆盖
- * @return 如果复制成功返回true,否则返回false
- */
- public static boolean copyDirectory(String srcDirName, String destDirName,
- boolean overlay) {
- // 判断源目录是否存在
- File srcDir = new File(srcDirName);
- if (!srcDir.exists()) {
- MESSAGE = "复制目录失败:源目录" + srcDirName + "不存在!";
- JOptionPane.showMessageDialog(null, MESSAGE);
- return false;
- } else if (!srcDir.isDirectory()) {
- MESSAGE = "复制目录失败:" + srcDirName + "不是目录!";
- JOptionPane.showMessageDialog(null, MESSAGE);
- return false;
- }
- // 如果目标目录名不是以文件分隔符结尾,则加上文件分隔符
- if (!destDirName.endsWith(File.separator)) {
- destDirName = destDirName + File.separator;
- }
- File destDir = new File(destDirName);
- // 如果目标文件夹存在
- if (destDir.exists()) {
- // 如果允许覆盖则删除已存在的目标目录
- if (overlay) {
- new File(destDirName).delete();
- } else {
- MESSAGE = "复制目录失败:目的目录" + destDirName + "已存在!";
- JOptionPane.showMessageDialog(null, MESSAGE);
- return false;
- }
- } else {
- // 创建目的目录
- System.out.println("目的目录不存在,准备创建。。。");
- if (!destDir.mkdirs()) {
- System.out.println("复制目录失败:创建目的目录失败!");
- return false;
- }
- }
- boolean flag = true;
- File[] files = srcDir.listFiles();
- for (int i = 0; i < files.length; i++) {
- // 复制文件
- if (files[i].isFile()) {
- flag = CopyFileUtil.copyFile(files[i].getAbsolutePath(),
- destDirName + files[i].getName(), overlay);
- if (!flag)
- break;
- } else if (files[i].isDirectory()) {
- flag = CopyFileUtil.copyDirectory(files[i].getAbsolutePath(),
- destDirName + files[i].getName(), overlay);
- if (!flag)
- break;
- }
- }
- if (!flag) {
- MESSAGE = "复制目录" + srcDirName + "至" + destDirName + "失败!";
- JOptionPane.showMessageDialog(null, MESSAGE);
- return false;
- } else {
- return true;
- }
- }
- public static void main(String[] args) {
- String srcDirName = "C:/test/test0/test1";
- String destDirName = "c:/ttt";
- CopyFileUtil.copyDirectory(srcDirName, destDirName, true);
- }
- }
不考虑多线程优化,单线程文件复制最快的方法是(文件越大该方法越有优势,一般比常用方法快30+%):
- private static void nioTransferCopy(File source, File target) {
- FileChannel in = null;
- FileChannel out = null;
- FileInputStream inStream = null;
- FileOutputStream outStream = null;
- try {
- inStream = new FileInputStream(source);
- outStream = new FileOutputStream(target);
- in = inStream.getChannel();
- out = outStream.getChannel();
- in.transferTo(0, in.size(), out);
- } catch (IOException e) {
- e.printStackTrace();
- } finally {
- close(inStream);
- close(in);
- close(outStream);
- close(out);
- }
- }
如果需要监测复制进度,可以用第二快的方法(留意buffer的大小,对速度有很大影响):
- private static void nioBufferCopy(File source, File target) {
- FileChannel in = null;
- FileChannel out = null;
- FileInputStream inStream = null;
- FileOutputStream outStream = null;
- try {
- inStream = new FileInputStream(source);
- outStream = new FileOutputStream(target);
- in = inStream.getChannel();
- out = outStream.getChannel();
- ByteBuffer buffer = ByteBuffer.allocate(4096);
- while (in.read(buffer) != -1) {
- buffer.flip();
- out.write(buffer);
- buffer.clear();
- }
- } catch (IOException e) {
- e.printStackTrace();
- } finally {
- close(inStream);
- close(in);
- close(outStream);
- close(out);
- }
- }
常用的方法1是:
- private static void customBufferBufferedStreamCopy(File source, File target) {
- InputStream fis = null;
- OutputStream fos = null;
- try {
- fis = new BufferedInputStream(new FileInputStream(source));
- fos = new BufferedOutputStream(new FileOutputStream(target));
- byte[] buf = new byte[4096];
- int i;
- while ((i = fis.read(buf)) != -1) {
- fos.write(buf, 0, i);
- }
- }
- catch (Exception e) {
- e.printStackTrace();
- } finally {
- close(fis);
- close(fos);
- }
- }
常用的方法2是:
- private static void customBufferStreamCopy(File source, File target) {
- InputStream fis = null;
- OutputStream fos = null;
- try {
- fis = new FileInputStream(source);
- fos = new FileOutputStream(target);
- byte[] buf = new byte[4096];
- int i;
- while ((i = fis.read(buf)) != -1) {
- fos.write(buf, 0, i);
- }
- }
- catch (Exception e) {
- e.printStackTrace();
- } finally {
- close(fis);
- close(fos);
- }
- }
Java: 复制文件最快方法的更多相关文章
- Java 复制文件的高效方法
转载自:http://jingyan.baidu.com/article/ff4116259c2d7712e4823780.html 在Java编程中,复制文件的方法有很多,而且经常要用到.我以前一直 ...
- JAVA复制文件最快的算法
/** * 复制文件 * * @param srcFile * 源文件File * @param destDir * 目标目录File * @param newFileName * 新文件名 * @r ...
- Java复制文件用数据流方法,renameTO()方法是相当于剪切操作
我想达到的效果是,一个文件复制到另一个地方,然后重命名 //判断是否存在 File file = new File("D:/tomcat9.0.12/apache-tomcat-9.0.12 ...
- java复制文件夹及所有子目录和文件
package text; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; im ...
- java复制文件的4种方式
尽管Java提供了一个可以处理文件的IO操作类.但是没有一个复制文件的方法.复制文件是一个重要的操作,当你的程序必须处理很多文件相关的时候.然而有几种方法可以进行Java文件复制操作,下面列举出4中最 ...
- [JAVA]java复制文件的4种方式
尽管Java提供了一个可以处理文件的IO操作类. 但是没有一个复制文件的方法. 复制文件是一个重要的操作,当你的程序必须处理很多文件相关的时候. 然而有几种方法可以进行Java文件复制操作,下面列举出 ...
- 4种java复制文件的方式
尽管Java提供了一个可以处理文件的IO操作类,但是没有一个复制文件的方法.复制文件是一个重要的操作,当你的程序必须处理很多文件相关的时候.然而有几种方法可以进行Java文件复制操作,下面列举出4中最 ...
- java复制文件
package com.test.tes; import java.io.File; import java.io.FileInputStream; import java.io.FileOutput ...
- 不能往Windows Server 2008 R2 Server中复制文件的解决方法
目前一直直接往Windows 2008 R2 Server中复制文件(暂时还没有搭建ftp服务),突然不能复制了,于是百度找到了解决方法,特此记录(记忆). 1.在任务管理器中找到“rdpclip.e ...
随机推荐
- Struts 2 Tutorial
Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applicati ...
- 8-4 Fabled Rooks uva11134
题意:你的任务是在n*n的棋盘上放 n 小于5000 个车 使得任意两个车不互相攻击 且第i个车在一个给定的矩形ri之内 给出该矩形左上角坐标和右下角坐标四个点 必须满足放车的位置在矩形内 边上 ...
- docker动态绑定端口
一.背景 在创建容器的时候,我们可以使用命令 docker container run -p host:container container-name 的方式来绑定端口,还可以使用docker-co ...
- 【转】SyntaxError: Non-ASCII character ‘\xe5′ in file
SyntaxError: Non-ASCII character ‘\xe5′ in file 在写一个小脚本,运行起来总是出现这个错误 查了下Python的默认编码文件是用的ASCII码,你将文件存 ...
- MySQL Insert语句单个批次数量过多导致的CPU性能问题分析
[问题] 最近有台服务器比较频繁的CPU报警,表现的特征有CPU sys占比偏高,大量慢查询,大量并发线程堆积.后面开发对insert的相关业务限流后,服务器性能恢复正常. [异常期间线程处理情况] ...
- 深度学习基础系列(九)| Dropout VS Batch Normalization? 是时候放弃Dropout了
Dropout是过去几年非常流行的正则化技术,可有效防止过拟合的发生.但从深度学习的发展趋势看,Batch Normalizaton(简称BN)正在逐步取代Dropout技术,特别是在卷积层.本文将首 ...
- Codeforces Round #461 (Div. 2)
A - Cloning Toys /* 题目大意:给出两种机器,一种能将一种原件copy出额外一种原件和一个附件, 另一种可以把一种附件copy出额外两种附件,给你一个原件, 问能否恰好变出题目要求数 ...
- hdu 4557 暴力
题意: 作为2013年699万应届毕业生中的一员,由于宏观经济的不景气,小明在毕业当天就华丽丽地失业了! 经历了千难万苦的求职过程,小明特别能理解毕业生的就业之难,所以,他现在准备创建一家专门针对IT ...
- poj 3264 线段树
题目意思:给定Q(1<=Q<=200000)个数A1,A2,```,AQ, 多次求任一区间Ai-Aj中最大数和最小数的差 线段树太弱了,题目逼格一高连代码都读不懂,今天开始重刷线段树,每天 ...
- hdu 4025 Equation of XOR 状态压缩
思路: 设: 方程为 1*x1 ^ 1*x2 ^ 0*x3 = 0; 0*x1 ^ 1*x2 ^ 1*x3 = 0; 1*x1 ^ 0*x2 ^ 0*x3 = 0 把每一列压缩成一个64位整数,因为x ...