黑马程序员技术交流社区

标题: 复制mp3文件的标准写法是什么呀? [打印本页]

作者: xukunn    时间: 2014-11-3 08:19
标题: 复制mp3文件的标准写法是什么呀?
毕老师视频19天18个视频留下来的作业:复制MP3文件
请问用BufferedOutputStream还需要自己再定义一个缓冲字节数组么?
  1. /**
  2.          * 复制非文本文件
  3.          */
  4.         public static void copyMedia() throws IOException{
  5.                 BufferedInputStream bin = new BufferedInputStream(new  FileInputStream("man.mp3"));
  6.                 BufferedOutputStream bout = new BufferedOutputStream(new FileOutputStream("man_copy.mp3"));
  7.                 int ch = 0;
  8.                 while((ch =bin.read())!=-1){
  9.                         bout.write(ch);
  10. //                        bout.flush();//这一行加上后,Eclipse停不下来
  11.                 }
  12.                 bin.close();
  13.                 bout.close();
  14.         }
复制代码




作者: xukunn    时间: 2014-11-3 08:53
我自己解决了。
  1.         /**
  2.          * 复制非文本文件
  3.          */
  4.         public static void copyMedia() throws IOException{
  5.                 InputStream in = new  FileInputStream("man.mp3");
  6.                 OutputStream out = new FileOutputStream("man_copy.mp3");
  7.                 byte[] buff = new byte[1024*8];
  8.                 int len = 0;
  9.                 while((len =in.read(buff))!=-1){
  10.                         out.write(buff,0,len);
  11.                 }
  12.                 in.close();
  13.                 out.close();
  14.         }
复制代码




作者: 菜鸟一号    时间: 2014-11-3 08:58
没有标准的吧:L
作者: 小鸡捉你    时间: 2014-11-3 09:16
这个有什么标准额,我怎么不知道
作者: 。冰封    时间: 2014-11-3 15:40
用系统给的buffer就行了。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2