I am a beginner. I wrote this code to run an .au file but I get the following error.
IWAV0048I Java Bean sora started with null constructor
I use eclipse and java.
Please help.
import java.applet.*;
public class sora {
public void main(String[] args)
{
a test=new a();
test.start("D:\\bava\\a.au");
}
}
class a extends Applet {
private String file;
public void start(String File)
{file=File;
try{
AudioClip ac = getAudioClip(getCodeBase(), file);
ac.play();
}
catch(Exception e){
System.out.println(e);
}
}
ac == nulland when you doac.play();you get the exception. What doesgetAudioClip();do? – debracey May 11 '11 at 2:02