Java使用Applet播放聲音?
如何使用Applet來播放聲音?
解決方法
下麵的示例演示如何使用使用AudioClip類的getAudioClip(),getAudioClip(), play() & stop()來播放聲音。
import java.applet.*; import java.awt.*; import java.awt.event.*; public class PlaySoundApplet extends Applet implements ActionListener{ Button play,stop; AudioClip audioClip; public void init(){ play = new Button(" Play in Loop "); add(play); play.addActionListener(this); stop = new Button(" Stop "); add(stop); stop.addActionListener(this); audioClip = getAudioClip(getCodeBase(), "Sound.wav"); } public void actionPerformed(ActionEvent ae){ Button source = (Button)ae.getSource(); if (source.getLabel() == " Play in Loop "){ audioClip.play(); } else if(source.getLabel() == " Stop "){ audioClip.stop(); } } }
結果
上麵的代碼示例將產生一個java的web瀏覽器,結果如下。
View in Browser.