使用NIO的直接缓存区复制文件

来源:互联网 发布:php 常量定义和使用 编辑:程序博客网 时间:2024/05/16 04:51
package com.dl.test;


import java.io.*;
import java.nio.*;
import java.nio.channels.*;


public class FastCopyFile
{
  static public void main( String args[] ) throws Exception {
    if (args.length<2) {
      System.err.println( "Usage: java FastCopyFile infile outfile" );
      System.exit( 1 );
    }


    String infile = args[0];
    String outfile = args[1];


    FileInputStream fin = new FileInputStream( infile );
    FileOutputStream fout = new FileOutputStream( outfile );


    FileChannel fcin = fin.getChannel();
    FileChannel fcout = fout.getChannel();


    ByteBuffer buffer = ByteBuffer.allocateDirect( 1024 );


    while (true) {
      buffer.clear();


      int r = fcin.read( buffer );


      if (r==-1) {
        break;
      }


      buffer.flip();


      fcout.write( buffer );
    }
  }
}
0 0
原创粉丝点击