麻烦在Java中播放wav

时间:2009-02-23 14:02:08

标签: java wav playback javasound

我正在尝试播放

PCM_UNSIGNED 11025.0 Hz, 8 bit, mono, 1 bytes/frame

文件描述为here (1)here(2)

第一种方法有效,但我不想依赖sun.*的东西。第二个导致只播放一些领先的帧,听起来更像是一个点击。因为我正在使用ByteArrayInputStream播放,所以不能成为IO问题。

Plz分享您为何会发生这种情况的想法。 TIA。

1 个答案:

答案 0 :(得分:25)

我不确定为什么你链接的第二种方法会启动另一个线程;我相信无论如何音频都将在自己的线程中播放。是否在剪辑播放完毕之前应用程序完成了问题?

import javax.sound.sampled.*;
import java.io.File;
import java.io.IOException;
import javax.sound.sampled.LineEvent.Type;

private static void playClip(File clipFile) throws IOException, 
  UnsupportedAudioFileException, LineUnavailableException, InterruptedException {
  class AudioListener implements LineListener {
    private boolean done = false;
    @Override public synchronized void update(LineEvent event) {
      Type eventType = event.getType();
      if (eventType == Type.STOP || eventType == Type.CLOSE) {
        done = true;
        notifyAll();
      }
    }
    public synchronized void waitUntilDone() throws InterruptedException {
      while (!done) { wait(); }
    }
  }
  AudioListener listener = new AudioListener();
  AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(clipFile);
  try {
    Clip clip = AudioSystem.getClip();
    clip.addLineListener(listener);
    clip.open(audioInputStream);
    try {
      clip.start();
      listener.waitUntilDone();
    } finally {
      clip.close();
    }
  } finally {
    audioInputStream.close();
  }
}