我正在製作一個有音樂組件的程序。基本上,當按下某些按鈕時,我想播放特定的歌曲文件。在Java中我一直在播放聲音,但沒有爲我工作。我目前在教程中找到一些代碼,但我不確定如何指定文件。我不斷收到一個FileNotFoundExecption,所以我明顯引用文件不正確。我的桌面上有.wav文件,我也在我的項目的資源源文件夾中。部分代碼如下,我如何引用文件的任何想法?在Java中播放聲音文件
public static void main(String[] args) throws Exception {
// specify the sound to play
// (assuming the sound can be played by the audio system)
File soundFile = new File("/desktop/14_Wonderland.wav");
AudioInputStream sound = AudioSystem.getAudioInputStream(soundFile);
// load the sound into memory (a Clip)
DataLine.Info info = new DataLine.Info(Clip.class, sound.getFormat());
Clip clip = (Clip) AudioSystem.getLine(info);
clip.open(sound);
// due to bug in Java Sound, explicitly exit the VM when
// the sound has stopped.
clip.addLineListener(new LineListener() {
public void update(LineEvent event) {
if (event.getType() == LineEvent.Type.STOP) {
event.getLine().close();
System.exit(0);
}
}
});
// play the sound clip
clip.start();
}
'/ desktop/14_Wonderland.wav',不會讓你到桌面上..請參閱[this](http://stackoverflow.com/questions/1080634/how-to-get-the-desktop-path -in-java)或[this](http://stackoverflow.com/questions/9981594/get-absolute-desktop-path)。 [Here](http://stackoverflow.com/questions/570401/in-java-under-windows-how-do-i-find-a-redirected-desktop-folder)是另外一個 – chancea