我有一个运行良好的音乐播放器,但我想添加一个播放/暂停按钮。我已经设置了按钮和所有这些,但我不知道实际暂停剪辑的代码。
这是我的代码:
try{
File f = new File("songs/mysong.wav");
Clip clip = AudioSystem.getClip();
AudioInputStream ais = AudioSystem.getAudioInputStream(f);
clip.open(ais);
playing = true;
if(MusicPlayer.pause)
{
clip.stop(); // <- Doesnt stop the song
}
clip.loop(Clip.LOOP_CONTINUOUSLY);
}catch(Exception exception){System.out.println("Failed To Play The WAV File!");}
提前致谢!