就像标题一样。我想知道是否可以在后台播放一首歌,如果是的话,代码是如何进行的呢?我无休止地用谷歌搜索无济于事。任何帮助将不胜感激。
答案 0 :(得分:0)
尝试使用Clip类: http://docs.oracle.com/javase/7/docs/api/javax/sound/sampled/Clip.html
我已将此代码用于许多项目,并且始终有效
try {
// Open an audio input stream.
URL url = this.getClass().getClassLoader().getResource("path/fileName");
AudioInputStream audioIn = AudioSystem.getAudioInputStream(url);
// Get a sound clip resource.
clip = AudioSystem.getClip();
// Open audio clip and load samples from the audio input stream.
clip.open(audioIn);
}catch(Exception e){
System.out.println(e);
}