叶落心成
转载 java文件写入耗时
转载地址:http://zhenqinghualy.blog.163.com/blog/static/5498053520100123332267/
原创地址不详
从老紫竹的网站上转来滴
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
/**
* 测试各种写文件的方法性能。
*
* @author 老紫竹 JAVA世纪网(java2000.net)
*
*/
public class T {
public static void main(String[] args) {
FileOutputStream out = null;
FileOutputStream outSTr = null;
BufferedOutputStream Buff = null;
FileWriter fw = null;
int count = 1000000;// 写文件行数
try {
byte[] bs = "测试java 文件操作\r\n".getBytes();
out = new FileOutputStream(new File("C:/add.txt"));
long begin = System.currentTimeMillis();
for (int i = 0; i < count; i++) {
out.write(bs);
}
out.close();
long end = System.currentTimeMillis();
System.out.println("FileOutputStream执行耗时:" + (end - begin) + " 豪秒");
outSTr = new FileOutputStream(new File("C:/add0.txt"));
Buff = new BufferedOutputStream(outSTr);
long begin0 = System.currentTimeMillis();
for (int i = 0; i < count; i++) {
Buff.write(bs);
}
Buff.flush();
Buff.close();
long end0 = System.currentTimeMillis();
System.out.println("BufferedOutputStream执行耗时:" + (end0 - begin0) + " 豪秒");
fw = new FileWriter("C:/add2.txt");
long begin3 = System.currentTimeMillis();
for (int i = 0; i < count; i++) {
fw.write("测试java 文件操作\r\n");
}
fw.flush();
fw.close();
long end3 = System.currentTimeMillis();
System.out.println("FileWriter执行耗时:" + (end3 - begin3) + " 豪秒");
long begin4 = System.currentTimeMillis();
String path = "C:/add3.txt";
ByteBuffer bb = ByteBuffer.wrap(bs);
FileChannel out2 = new FileOutputStream(path).getChannel();
for (int i = 0; i < count; i++) {
out2.write(bb);
bb.rewind();
}
out2.close();
long end4 = System.currentTimeMillis();
System.out.println("FileChannel执行耗时:" + (end4 - begin4) + " 豪秒");
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
fw.close();
Buff.close();
outSTr.close();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
在我的笔记本上,运行结果如下
FileOutputStream执行耗时:4891 豪秒
BufferedOutputStream执行耗时:78 豪秒
FileWriter执行耗时:438 豪秒
FileChannel执行耗时:2812 豪秒
当然最终生成的文件都是正确的
总结:
BufferedOutputStream 由于有缓冲,性能明显好
FileOutputStream 性能最差,因为其每次都写入字节。
FileWriter 性能很一般
FileChannel使用了nio,但如果没有缓冲,必能太指望性能了
posted on 2013-12-25 14:24
叶落心成
阅读(467)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
Powered by:
BlogJava
Copyright © 叶落心成
<
2013年12月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
导航
BlogJava
首页
新随笔
联系
聚合
管理
统计
随笔 - 8
文章 - 1
评论 - 0
引用 - 0
常用链接
我的随笔
我的评论
我的参与
留言簿
给我留言
查看公开留言
查看私人留言
随笔档案
2014年7月 (1)
2014年3月 (1)
2014年1月 (1)
2013年12月 (2)
2012年2月 (1)
文章档案
2012年2月 (3)
搜索
最新评论
阅读排行榜
1. Java程序执行超时——Future接口介绍(5992)
2. ResourceBundle 读取properties文件中文乱码(3783)
3. 错误记录:Invalid white space character (0x7)(548)
4. fastjson(515)
5. 转载 java文件写入耗时(467)
评论排行榜
1. ResourceBundle 读取properties文件中文乱码(0)
2. Java程序执行超时——Future接口介绍(0)
3. fastjson(0)
4. 转载 java文件写入耗时(0)
5. 错误记录:Invalid white space character (0x7)(0)