为什么字符流复制出来的mp4文件,打开时显示已损毁,必须用字节流吗
import java.io.*;public class wa {
public static void main(String[] args) throws IOException {
FileReader fr = new FileReader(new File("src/1.mp4"));
FileWriter fw = new FileWriter(new File("src/a.mp4"));
int len;
char[] chars = new char;
while((len = fr.read(chars)) != -1){
fw.write(chars,0,len);
}
fw.close();
fr.close();
}
}
鱼油你好,
MP4文件是二进制文件,而字符流(FileReader和FileWriter)主要用于处理文本文件。这就导致如果用字符流来读写二进制文件,会引起数据损坏。
在你提供的代码中,使用了`FileReader`和`FileWriter`,它们会尝试将二进制数据解释并处理为字符,这会导致数据在写入过程中发生改变,从而使文件损坏。因此,MP4文件等二进制文件应该使用字节流进行处理。
可以使用`FileInputStream`和`FileOutputStream`来实现二进制文件的复制。以下是修正后的代码:
import java.io.*;
public class wa {
public static void main(String[] args) throws IOException {
FileInputStream fis = new FileInputStream(new File("src/1.mp4"));
FileOutputStream fos = new FileOutputStream(new File("src/a.mp4"));
byte[] buffer = new byte;
int len;
while((len = fis.read(buffer)) != -1){
fos.write(buffer, 0, len);
}
fos.close();
fis.close();
}
}
这样使用字节流来处理MP4文件,就不会出现文件损毁的问题了。希望这个回答对你有帮助!
以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。 字符流基本上是针对文本文件的,像mp4这种字节码文件一定要用字节流
页:
[1]