黑马程序员技术交流社区
标题:
复制mp3文件的标准写法是什么呀?
[打印本页]
作者:
xukunn
时间:
2014-11-3 08:19
标题:
复制mp3文件的标准写法是什么呀?
毕老师视频
19天
第
18
个视频留下来的作业:
复制MP3文件
请问用
BufferedOutputStream
还需要自己再定义一个缓冲字节数组么?
/**
* 复制非文本文件
*/
public static void copyMedia() throws IOException{
BufferedInputStream bin = new BufferedInputStream(new FileInputStream("man.mp3"));
BufferedOutputStream bout = new BufferedOutputStream(new FileOutputStream("man_copy.mp3"));
int ch = 0;
while((ch =bin.read())!=-1){
bout.write(ch);
// bout.flush();//这一行加上后,Eclipse停不下来
}
bin.close();
bout.close();
}
复制代码
作者:
xukunn
时间:
2014-11-3 08:53
我自己解决了。
/**
* 复制非文本文件
*/
public static void copyMedia() throws IOException{
InputStream in = new FileInputStream("man.mp3");
OutputStream out = new FileOutputStream("man_copy.mp3");
byte[] buff = new byte[1024*8];
int len = 0;
while((len =in.read(buff))!=-1){
out.write(buff,0,len);
}
in.close();
out.close();
}
复制代码
作者:
菜鸟一号
时间:
2014-11-3 08:58
没有标准的吧:L
作者:
小鸡捉你
时间:
2014-11-3 09:16
这个有什么标准额,我怎么不知道
作者:
。冰封
时间:
2014-11-3 15:40
用系统给的buffer就行了。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2