提问人:سيف صلاح حسن 提问时间:11/18/2023 最后编辑:سيف صلاح حسن 更新时间:11/18/2023 访问量:30
项目声音
Sound of project
问:
我在 SourcePackages 中创建了 Sound 文件夹,并在该文件夹中有声音文件波形格式,这是我的代码,当我运行我的代码时,声音不工作,是否有任何问题以及为什么,我使用 apache nedbeans 19 ide:
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
public class Java1 {
private void playSound(String fileName) {
try {
// Load sound file from resources
AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(getClass().getResource("/Sound/" + fileName));
Clip clip = AudioSystem.getClip();
clip.open(audioInputStream);
clip.start();
} catch (Exception e) {
e.printStackTrace();
}
}
private void gameOver(){
playSound("negative_beeps.wav");
}
private void victory(){playSound("success-fanfare.wav");}
}
答: 暂无答案
评论