public class MapBufDelete {
public static void main(String[] args) {
try {
FileInputStream fis=new FileInputStream("./largeFile.txt");
int sum=0;
int n;
long t1=System.currentTimeMillis();
try {
while((n=fis.read())>=0){
// 数据处理
}
} catch (IOException e) {
e.printStackTrace();
}
long t=System.currentTimeMillis()-t1;
System.out.println("传统IOread文件,不使用缓冲区,用时:"+t);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
try {
FileInputStream fis=new FileInputStream("./largeFile.txt");
BufferedInputStream bis=new BufferedInputStream(fis);
int sum=0;
int n;
long t1=System.currentTimeMillis();
try {
while((n=bis.read())>=0){
// 数据处理
}
} catch (IOException e) {
e.printStackTrace();
}
long t=System.currentTimeMillis()-t1;
System.out.println("传统IOread文件,使用缓冲区,用时:"+t);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
MappedByteBuffer buffer=null;
try {
buffer=new RandomAccessFile("./largeFile.txt","rw").getChannel().map(FileChannel.MapMode.READ_WRITE, 0, 1253244);
int sum=0;
int n;
long t1=System.currentTimeMillis();
for(int i=0;i<1024*1024*10;i++){
// 数据处理
}
long t=System.currentTimeMillis()-t1;
System.out.println("内存映射文件读取文件,用时:"+t);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally {
}
}
}
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有