java----使用NIO进行快速的文件拷贝

Posted jahnson

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java----使用NIO进行快速的文件拷贝相关的知识,希望对你有一定的参考价值。

public static void fileCopy( File in, File out )  
            throws IOException  
    {  
        FileChannel inChannel = new FileInputStream( in ).getChannel();  
        FileChannel outChannel = new FileOutputStream( out ).getChannel();  
        try 
        {  
//          inChannel.transferTo(0, inChannel.size(), outChannel);      // original -- apparently has trouble copying large files on Windows  

            // magic number for Windows, 64Mb - 32Kb)  
            int maxCount = (64 * 1024 * 1024) - (32 * 1024);  
            long size = inChannel.size();  
            long position = 0;  
            while ( position < size )  
            {  
               position += inChannel.transferTo( position, maxCount, outChannel );  
            }  
        }  
        finally 
        {  
            if ( inChannel != null )  
            {  
               inChannel.close();  
            }  
            if ( outChannel != null )  
            {  
                outChannel.close();  
            }  
        }  
    }

使用NIO进行快速的文件拷贝  源自http://blog.csdn.net/just3do/article/details/68059647

以上是关于java----使用NIO进行快速的文件拷贝的主要内容,如果未能解决你的问题,请参考以下文章

java IO Nio 文件拷贝工具类Files

NIO零拷贝的深入分析

使用NIO快速复制Java文件

java网络编程系列之JavaIO的“今生”:NIO非阻塞模型

NIO的原理和文件读入读出及图片拷贝的使用

JAVA I/O文件NIO