关于提高字节流问题暨第四次java作业
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于提高字节流问题暨第四次java作业相关的知识,希望对你有一定的参考价值。
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秒,测试成功。
以上是关于关于提高字节流问题暨第四次java作业的主要内容,如果未能解决你的问题,请参考以下文章