Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
}
}
share|improve this question
Presumably ac == null and when you do ac.play(); you get the exception. What does getAudioClip(); do? – debracey May 11 '11 at 2:02

closed as not a real question by BalusC, mellamokb, CoolBeans, bmargulies, Graviton May 13 '11 at 3:26

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

How are you executing this code? I have the funny feeling that it is not actually an error, but instead just an informational message as discussed over on the Eclipse list:

http://dev.eclipse.org/newslists/news.eclipse.platform/msg42099.html

share|improve this answer

You probably want class a to be a static inner class. Try adding static to the class definition.

static class a extends Applet {
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.