gpt4 book ai didi

java - AudioClip没有声音-Java

转载 作者:行者123 更新时间:2023-12-03 01:39:52 25 4
gpt4 key购买 nike

我正在尝试播放.wav声音,但听不到。没有错误。

public void SoundClipTest() {
try {
File file = new File("");
File soundFile = new File(file.getAbsolutePath() + "/coin.wav");
AudioInputStream audioIn = AudioSystem.getAudioInputStream(soundFile);
Clip clip = AudioSystem.getClip();
clip.open(audioIn);
clip.start();
} catch (UnsupportedAudioFileException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (LineUnavailableException e) {
e.printStackTrace();
}
}

我尝试了其他 .wav 文件。我究竟做错了什么 ?

最佳答案

试试这个

   public static void main(String[] args) {
try {
File file = new File("");
File soundFile = new File(file.getAbsolutePath() + "/coin.wav");
AudioInputStream audioIn = AudioSystem.getAudioInputStream(soundFile);
Clip clip = AudioSystem.getClip();
clip.open(audioIn);
clip.start();
Thread.sleep(60 * 1000); // The sleep time should be length of your wav file
} catch (UnsupportedAudioFileException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (LineUnavailableException e) {
e.printStackTrace();
}
}

关于java - AudioClip没有声音-Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48250901/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com