比较Java中的FileInputStream与DataInputStream类
发布时间:2013-09-30 18:17 来源/作者:藕码网 分类:扩展区二
TAG标签:
本文给出的代码用于比较 比较Java中的FileInputStream与DataInputStream类 的性能。
- 运行环境:JDK1.6+Tomcat6.0 + Eclipse
- 授权方式:开源
- 下载积分:免费
- 推荐等级:★★★★
- 更新时间:2013-09-30
- 演示地址:暂无
- 代码详情
- 用户评论
- 相关代码
-
本文给出的代码用于比较 比较Java中的FileInputStream与DataInputStream类 的性能。
部分代码展示:
try {
// Open the file that is the first command line parameter
FileInputStream fstream = new FileInputStream(args[0]);
// Convert our input stream to a DataInputStream
DataInputStream in = new DataInputStream(fstream);
// Continue to read lines while there are still some left to read
while (in.available() !=0) {
// Print file line to screen
System.out.println (in.readLine());
} -
最新评论