繁体   English   中英

.wav文件的声音在JAVA中的随机时间停止

[英]Sound of .wav file stops at random time in JAVA

我试图在Java中创建一个播放某些声音的类,但声音会在随机时刻而不是在结尾处停止。 为什么这样做呢? 提前致谢!

这是我的代码:

import java.io.File;

import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.sound.sampled.Line;
import javax.sound.sampled.LineEvent;
import javax.sound.sampled.LineListener;
import javax.swing.JDialog;
import javax.swing.JFileChooser;

public class CoreJavaSound extends Object implements LineListener {
File soundFile;

JDialog playingDialog;

Clip clip;

public static void main(String[] args) throws Exception {
PlayBow();

}

public CoreJavaSound(String fileName) throws Exception {
JFileChooser chooser = new JFileChooser();

soundFile = new File(fileName);


System.out.println("Playing " + soundFile.getName());

Line.Info linfo = new Line.Info(Clip.class);
Line line = AudioSystem.getLine(linfo);
clip = (Clip) line;
clip.addLineListener(this);
AudioInputStream ais = AudioSystem.getAudioInputStream(soundFile);
clip.open(ais);
clip.start();
}

@Override
public void update(LineEvent le) {
LineEvent.Type type = le.getType();
if (type == LineEvent.Type.OPEN) {
  System.out.println("OPEN");
} else if (type == LineEvent.Type.CLOSE) {
  System.out.println("CLOSE");
  System.exit(0);
} else if (type == LineEvent.Type.START) {
  System.out.println("START");
  playingDialog.setVisible(true);
} else if (type == LineEvent.Type.STOP) {
  System.out.println("STOP");
  playingDialog.setVisible(false);
  clip.close();
}
}

public static void PlayBow() throws Exception
{
CoreJavaSound s = new CoreJavaSound("Bow.wav");
}
}

一切正常,除了声音在大约1秒(文件为5秒)后停止工作的事实之外...

该剪辑在后台线程上启动,而不是阻塞调用。 它在后台播放。 因此,程序将在不让剪辑完成播放的情况下终止。

尝试这样的事情:

  ...
  static boolean running = false;

  public static void main(String[] args) throws Exception {
    playBow();
    while(running) {
      Thread.sleep(200);
    }
  }
  ...
  @Override
  public void update(LineEvent le) {
    LineEvent.Type type = le.getType();
    if (type == LineEvent.Type.OPEN) {
      running = true;
      System.out.println("OPEN");
    } else if (type == LineEvent.Type.CLOSE) {
      System.out.println("CLOSE");
    } else if (type == LineEvent.Type.START) {
      System.out.println("START");
      playingDialog.setVisible(true);
    } else if (type == LineEvent.Type.STOP) {
      System.out.println("STOP");
      playingDialog.setVisible(false);
      clip.close();
      running = false;
    }
  }

请注意,此示例不是此问题的最佳解决方案。 这只是一个例子。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM