import java.applet.*;
/**
* SoundApplet.java - a simple applet that plays the "gong.au" sound file.
*/
public class AppletGame extends Applet
{
public void init()
{
super.init();
resize(0,0);
AudioClip gong = getAudioClip(getDocumentBase(), "test0.au");
gong.play();
}
}
在Eclipse applet viewer中,它加载并且不播放声音。在HTML中它没有加载,并说开始没有初始化。我试过在init之外调用它,所有有人帮助我!!!