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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. import java.io.*;

  2. /*复制MP3*/

  3. class Test5
  4. {
  5.         public static void main(String[] args) throws Exception
  6.         {
  7.                 BufferedInputStream bis = new BufferedInputStream(new FileInputStream("小苹果.mp3"));

  8.                 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("大苹果.mp3"));

  9.        

  10.                 int len = 0 ;

  11.                 while ((len=bis.read())!=-1)
  12.                 {
  13.                         bos.write(len);
  14.                 }

  15.                 bis.close();

  16.                 bos.close();
  17.         }
  18. }
复制代码


len=bis.read()的返回值应该是数字把?

bos.write(len)写入的应该也是数字把?

怎么最后输出的确是字节组成的文件?

1 个回复

倒序浏览
buffer是字节数据流类型吧
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马