gpt4 book ai didi

java - 如何用Java播放声音?

转载 作者:行者123 更新时间:2023-12-03 02:11:00 26 4
gpt4 key购买 nike

我希望能够在程序中播放声音文件。我应该去哪里看?

最佳答案

我写了下面的代码,效果很好。但我认为它仅适用于.wav格式。

public static synchronized void playSound(final String url) {
new Thread(new Runnable() {
// The wrapper thread is unnecessary, unless it blocks on the
// Clip finishing; see comments.
public void run() {
try {
Clip clip = AudioSystem.getClip();
AudioInputStream inputStream = AudioSystem.getAudioInputStream(
Main.class.getResourceAsStream("/path/to/sounds/" + url));
clip.open(inputStream);
clip.start();
} catch (Exception e) {
System.err.println(e.getMessage());
}
}
}).start();
}

关于java - 如何用Java播放声音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24003539/

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