我想为我的游戏添加背景音,但声音无法播放。一切都在编译,但没有声音出来。音频文件位于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();
}