• Java 文件复制


    摘要

    尽管Java提供了一个可以处理文件的IO操作类。 但是没有一个复制文件的方法。 复制文件是一个重要的操作,当你的程序必须处理很多文件相关的时候。 然而有几种方法可以进行Java文件复制操作,下面列举出4中最受欢迎的方式。
     
    1.使用File Streams复制

    这是最经典的方式将一个文件的内容复制到另一个文件中。 使用FileInputStream读取文件A的字节,使用FileOutputStream写入到文件B。 这是第一个方法的代码:

    public static void copyFileUsingFileStreams(File source,File dest)
    throws IOException{
    InputStream input = null;
    OutputStream output = null;
    try {
    input = new FileInputStream(source);
    output = new FileOutputStream(dest);
    byte[] buf = new byte[1024];
    int bytesRead;
    while((bytesRead = input.read(buf)) > 0) {
    output.write(buf,0,bytesRead);
    }
    }finally {
    input.close();
    output.close();
    }

    }

    正如你所看到的我们执行几个读和写操作try的数据,所以这应该是一个低效率的,下一个方法我们将看到新的方式。

    2. 使用FileChannel复制

    Java NIO包括transferFrom方法,根据文档应该比文件流复制的速度更快。 这是第二种方法的代码:

    1.  
      private static void copyFileUsingFileChannels(File source, File dest) throws IOException {    
    2.  
              FileChannel inputChannel = null;    
    3.  
              FileChannel outputChannel = null;    
    4.  
          try {
    5.  
              inputChannel = new FileInputStream(source).getChannel();
    6.  
              outputChannel = new FileOutputStream(dest).getChannel();
    7.  
              outputChannel.transferFrom(inputChannel, 0, inputChannel.size());
    8.  
          } finally {
    9.  
              inputChannel.close();
    10.  
              outputChannel.close();
    11.  
          }
    12.  
      }

    3. 使用Commons IO复制

    Apache Commons IO提供拷贝文件方法在其FileUtils类,可用于复制一个文件到另一个地方。它非常方便使用Apache Commons FileUtils类时,您已经使用您的项目。基本上,这个类使用Java NIO FileChannel内部。 这是第三种方法的代码:

    1.  
      private static void copyFileUsingApacheCommonsIO(File source, File dest)
    2.  
              throws IOException {
    3.  
          FileUtils.copyFile(source, dest);
    4.  
      }

    4. 使用Java7的Files类复制

    如果你有一些经验在Java 7中你可能会知道,可以使用复制方法的Files类文件,从一个文件复制到另一个文件。 这是第四个方法的代码:

    1.  
      private static void copyFileUsingJava7Files(File source, File dest)
    2.  
              throws IOException {    
    3.  
              Files.copy(source.toPath(), dest.toPath());
    4.  
      }

    5. 测试

    现在看到这些方法中的哪一个是更高效的,我们会复制一个大文件使用每一个在一个简单的程序。 从缓存来避免任何性能明显我们将使用四个不同的源文件和四种不同的目标文件。 让我们看一下代码:

    1.  
      import java.io.File;
    2.  
      import java.io.FileInputStream;
    3.  
      import java.io.FileOutputStream;
    4.  
      import java.io.IOException;
    5.  
      import java.io.InputStream;
    6.  
      import java.io.OutputStream;
    7.  
      import java.nio.channels.FileChannel;
    8.  
      import java.nio.file.Files;
    9.  
      import org.apache.commons.io.FileUtils;
    10.  
       
    11.  
      public class CopyFilesExample {
    12.  
       
    13.  
      public static void main(String[] args) throws InterruptedException,
    14.  
      IOException {
    15.  
       
    16.  
      File source = new File("C:\Users\nikos7\Desktop\files\sourcefile1.txt");
    17.  
      File dest = new File("C:\Users\nikos7\Desktop\files\destfile1.txt");
    18.  
       
    19.  
      // copy file using FileStreamslong start = System.nanoTime();
    20.  
      long end;
    21.  
      copyFileUsingFileStreams(source, dest);
    22.  
      System.out.println("Time taken by FileStreams Copy = "
    23.  
      + (System.nanoTime() - start));
    24.  
       
    25.  
      // copy files using java.nio.FileChannelsource = new File("C:\Users\nikos7\Desktop\files\sourcefile2.txt");
    26.  
      dest = new File("C:\Users\nikos7\Desktop\files\destfile2.txt");
    27.  
      start = System.nanoTime();
    28.  
      copyFileUsingFileChannels(source, dest);
    29.  
      end = System.nanoTime();
    30.  
      System.out.println("Time taken by FileChannels Copy = " + (end - start));
    31.  
       
    32.  
      // copy file using Java 7 Files classsource = new File("C:\Users\nikos7\Desktop\files\sourcefile3.txt");
    33.  
      dest = new File("C:\Users\nikos7\Desktop\files\destfile3.txt");
    34.  
      start = System.nanoTime();
    35.  
      copyFileUsingJava7Files(source, dest);
    36.  
      end = System.nanoTime();
    37.  
      System.out.println("Time taken by Java7 Files Copy = " + (end - start));
    38.  
       
    39.  
      // copy files using apache commons iosource = new File("C:\Users\nikos7\Desktop\files\sourcefile4.txt");
    40.  
      dest = new File("C:\Users\nikos7\Desktop\files\destfile4.txt");
    41.  
      start = System.nanoTime();
    42.  
      copyFileUsingApacheCommonsIO(source, dest);
    43.  
      end = System.nanoTime();
    44.  
      System.out.println("Time taken by Apache Commons IO Copy = "
    45.  
      + (end - start));
    46.  
       
    47.  
      }
    48.  
       
    49.  
      private static void copyFileUsingFileStreams(File source, File dest)
    50.  
      throws IOException {
    51.  
      InputStream input = null;
    52.  
      OutputStream output = null;
    53.  
      try {
    54.  
      input = new FileInputStream(source);
    55.  
      output = new FileOutputStream(dest);
    56.  
      byte[] buf = new byte[1024];
    57.  
      int bytesRead;
    58.  
      while ((bytesRead = input.read(buf)) > 0) {
    59.  
      output.write(buf, 0, bytesRead);
    60.  
      }
    61.  
      finally {
    62.  
      input.close();
    63.  
      output.close();
    64.  
      }
    65.  
      }
    66.  
       
    67.  
      private static void copyFileUsingFileChannels(File source, File dest)
    68.  
      throws IOException {
    69.  
      FileChannel inputChannel = null;
    70.  
      FileChannel outputChannel = null;
    71.  
      try {
    72.  
      inputChannel = new FileInputStream(source).getChannel();
    73.  
      outputChannel = new FileOutputStream(dest).getChannel();
    74.  
      outputChannel.transferFrom(inputChannel, 0, inputChannel.size());
    75.  
      finally {
    76.  
      inputChannel.close();
    77.  
      outputChannel.close();
    78.  
      }
    79.  
      }
    80.  
       
    81.  
      private static void copyFileUsingJava7Files(File source, File dest)
    82.  
      throws IOException {
    83.  
      Files.copy(source.toPath(), dest.toPath());
    84.  
      }
    85.  
       
    86.  
      private static void copyFileUsingApacheCommonsIO(File source, File dest)
    87.  
      throws IOException {
    88.  
      FileUtils.copyFile(source, dest);
    89.  
      }
    90.  
       
    91.  
      }

    输出:

    1.  
      Time taken by FileStreams Copy = 127572360
    2.  
      Time taken by FileChannels Copy = 10449963
    3.  
      Time taken by Java7 Files Copy = 10808333
    4.  
      Time taken by Apache Commons IO Copy = 17971677

    正如您可以看到的FileChannels拷贝大文件是最好的方法。如果你处理更大的文件,你会注意到一个更大的速度差。 这是一个示例,该示例演示了Java中四种不同的方法可以复制一个文件。

     
  • 相关阅读:
    How Google TestsSoftware
    How Google TestsSoftware
    How Google TestsSoftware
    How Google TestsSoftware
    How Google Tests Software
    月薪3万的程序员都避开了哪些坑
    关于BUG率的计算和它的实际意义的思考
    fastJSON☞JSONParameters☞时区的修改☞时间最后有一个"Z"
    基础知识系列☞C#中数组Array、ArrayList和List三者的区别
    WCF--提示:异常消息为“传入消息的消息格式不应为“Raw”。此操作的消息格式应为 'Xml', 'Json'。
  • 原文地址:https://www.cnblogs.com/Firesun/p/9424511.html
Copyright © 2020-2023  润新知