我试图从PC的线路输入中捕获音频,为此,我正在使用AudioSystem类。静态AudioSystem.write方法有两个选择之一:写入文件或写入流。我可以将其写到文件中,但每次尝试写流时,都会抛出java.io.IOException(未指定流长度)。至于我的缓冲区,我正在使用ByteArrayOutputStream。我应该使用另一种流或弄乱其他地方的流吗?

在相关主题中也是,可以通过调用TargetDataLine直接在(read)中对音频线进行采样。这是进行音频捕获或使用AudioSystem的首选方法吗?

更新
请求的源代码:

final private TargetDataLine line;
final private AudioFormat format;
final private AudioFileFormat.Type fileType;
final private AudioInputStream audioInputStream;
final private ByteArrayOutputStream bos;

// Constructor, etc.

public void run()
{
    System.out.println("AudioWorker Started");
    try
    {
        line.open(format);
        line.start();

        // This commented part is regarding the second part
        // of my question
        // byte[] buff = new byte[512];
        // int bytes = line.read(buff, 0, buff.length);

        AudioSystem.write(audioInputStream, fileType, bos);

    }
    catch ( Exception e )
    {
        e.printStackTrace();
    }

    System.out.println("AudioWorker Finished");
}


// Stack trace in console
AudioWorker Started
java.io.IOException: stream length not specified
    at com.sun.media.sound.WaveFileWriter.write(Unknown Source)
    at javax.sound.sampled.AudioSystem.write(Unknown Source)
    at AudioWorker.run(AudioWorker.java:41)
AudioWorker Finished

最佳答案

从AudioSystem.write JavaDoc:

07-27 21:00