您的位置:首页 > Web前端

使用NIO的FileChannel和ByteBuffer高效读取文件

2012-03-30 09:47 459 查看
http://hi.baidu.com/boywell/blog/item/658d143f730a553770cf6ccd.html

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.nio.ByteBuffer;

import java.nio.channels.FileChannel;


public class ReadWriteCompare

{

public static void main(String[] args) throws IOException

{

FileInputStream fileInputStream = new FileInputStream("f:"+ File.separator +"IBM e-Mentor Program Kickoff Night 1105.pdf");

FileOutputStream fileOutputStream = new FileOutputStream("f:" + File.separator + "test.pdf");

FileChannel inChannel = fileInputStream.getChannel();

FileChannel outChannel= fileOutputStream.getChannel();

ByteBuffer byteBuffer = ByteBuffer.allocate(1024);


//Direct Buffer的效率会更高。

// ByteBuffer byteBuffer = ByteBuffer.allocateDirect(1024);

long start = System.currentTimeMillis();

while(true)

{

int eof = inChannel.read(byteBuffer);

if(eof == -1 ) break;

byteBuffer.flip();

outChannel.write(byteBuffer);

byteBuffer.clear();

}

System.out.println("spending : " + (System.currentTimeMillis()-start));

inChannel.close();

outChannel.close();


}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: