标签:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
public class CopyFile {
/**
* @param args
*/
public static void main(String[] args) {
try {
FileInputStream fis = new FileInputStream ("a.mp3");
FileOutputStream fos = new FileOutputStream ("temp.mp3");
int read = fis.read();
byte[] buf = new byte[1024];
int len = 0 ;
while ( (len=fis.read(buf)) != -1 ) {
fos.write(buf,0,len);
read = fis.read();
}
fis.close();
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
通过此次作业,主要向代码里加入了
byte[] buf = new byte[1024];
int len = 0 ;此代码可以提高读取字节速度
然后对下方循环内容做了修改:
while ( (len=fis.read(buf)) != -1 ) {
fos.write(buf,0,len);
修改完毕后读取歌曲速度有原先半分中变成了不到2秒,测试成功。
标签:
原文地址:http://www.cnblogs.com/zskzsk/p/5357174.html