我在android工作。我想合并两个波形文件,并希望创建第三个文件。为此,我创建了两个输入流,然后尝试将这些输入流写入一个输出流文件。
这是我的代码: -
File file = new File("/sdcard/z.wav");
File file1 = new File("/sdcard/zz.wav");
InputStream is = new FileInputStream(file);
InputStream is1 = new FileInputStream(file1);
// Get the size of the file
long length = file.length();
long length1 = file1.length();
// Create the byte array to hold the data
byte[] bytes = new byte[(int)length];
byte[] bytes1 = new byte[(int)length1];
// Read in the bytes
int offset = 0;
int numRead = 0;
while (offset < (int)length &&( numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
offset += numRead;
}
int offset1 = 0;
int numRead1 = 0;
while (offset1 < (int)length1 &&( numRead1=is1.read(bytes1, offset1, bytes1.length-offset1)) >= 0) {
offset1 += numRead1;
}
FileOutputStream fos=new FileOutputStream("sdcard/guruu.wav");
Log.v("Trying Activity","before first write");
fos.write(bytes);
fos.write(bytes1,0,bytes1.length);
fos.write(bytes);
fos.close();
is.close();
is1.close();
当我播放输出文件guruu.wav然后这个只播放 file1 的文件时,它不播放file2的内容。请告诉我我做了什么错误。还有其他办法吗?
我是新手,所以请不要投票。
提前谢谢你。
答案 0 :(得分:0)
您没有合并数据,只需将其连接即可。
因此,您最终会得到一个包含以下内容的文件:
可以理解的是,当有人将此文件重新播放以进行播放时,他们会将其视为
要真正合并这些文件,您需要正确考虑internal structure of the WAV files。