这是对我之前问题here的跟进。
当我使用像大小为1024 * 32的示例中的字节数组时,生成的文件应该是一个波形文件。 如果我使用较小的大小,如只有32字节,甚至像
这样的单字节fstr.write(this.stream.read());
效果很好。
以下代码:
import java.io.*;
class ErrorThread extends Thread {
InputStream stream = null;
public ErrorThread(InputStream stream) {
this.stream = stream;
}
public void run() {
try {
byte[] buf = new byte[32 * 1024];
int nRead = 0;
while ((nRead = this.stream.read()) != -1) {
}
this.stream.close();
}
catch (Exception e) {
e.printStackTrace();
}
}
}
class InputThread extends Thread {
InputStream stream = null;
public InputThread(InputStream stream) {
this.stream = stream;
}
public void run() {
try {
FileOutputStream fstr = new FileOutputStream("test.wav");
int nRead = 0;
byte[] buf = new byte[1024 * 32];
while ((nRead = this.stream.read(buf, 0, buf.length)) != -1) {
fstr.write(buf, 0 , buf.length);
}
this.stream.close();
fstr.close();
}
catch (Exception e) {
e.printStackTrace();
}
}
}
public class Test {
public static void main(String[] args) {
try {
Process p = new ProcessBuilder("lame", "--decode", "test.mp3", "-").start();
ErrorThread et = new ErrorThread(p.getErrorStream());
InputThread it = new InputThread(p.getInputStream());
et.start();
it.start();
p.waitFor();
}
catch (Exception e) {
e.printStackTrace();
}
}
}
答案 0 :(得分:1)
fstr.write(buf, 0 , buf.length);
应该是
fstr.write(buf, 0 , nRead);
如果输入不是32K的倍数,那么你就是把剩余的东西写在缓冲区中。