A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 郑强强 中级黑马   /  2012-4-13 20:25  /  1249 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

byte []data = new byte[1];
File sf = new File("C:
Users
you
Desktop
423880618.txt");
File df = new File("C:
Users
you
Desktop
4.txt");

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(sf));

BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(df));

while(bis.read(data) != -1)
{
bos.write(data);
}
BufferedInputStream与BufferedOutputStream都有一个buf的位数组,写入和读取数据时都默认先经过buf,
那为什么还要显式的定义一个byte []data = new byte[1];然后bis.read(data) 和bos.write(data)?


评分

参与人数 1技术分 +1 收起 理由
贠(yun)靖 + 1

查看全部评分

1 个回复

正序浏览
两个流之间有缓冲区的话 会更好的提高效率。
最好写byte []data = new byte[1024]   这样效率高。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马