无法让声音发挥作用

时间:2014-05-27 01:29:24

标签: java audio

我想为我的游戏添加背景音,但声音无法播放。一切都在编译,但没有声音出来。音频文件位于res文件夹中。

以下是我的Sound Class的代码:

public class Sound {
//Used to make sound effects and background music
private AudioClip Music;

public Sound() throws MalformedURLException{
    URL url = new URL("res/Beep.wav");
    Music = JApplet.newAudioClip(url);
    Music.loop();
}

0 个答案:

没有答案