Hi,
I made a little Japplet in Netbeans. It uses a sub-class to store some
things. Netbeans can get the stuff compiled and running but when I try it in
Internet Explorer the Java console gives this error :
"java.lang.NoCl assDefFoundErro r: <applet>$<sub-class>"
I've declared the sub class as follow :
public class TestApplet extends javax.swing.JAp plet {
public class Number
< stuff >
}
< bla bla >
}
I know I can put this number class into another Java file but due some
isseus(it got to be stored on a microcontroller ) I want everything in 1
..class file. Why is Internet Explorer too stupid to execute the applet or
am I doing something wrong?
Greetings,
Rick
I made a little Japplet in Netbeans. It uses a sub-class to store some
things. Netbeans can get the stuff compiled and running but when I try it in
Internet Explorer the Java console gives this error :
"java.lang.NoCl assDefFoundErro r: <applet>$<sub-class>"
I've declared the sub class as follow :
public class TestApplet extends javax.swing.JAp plet {
public class Number
< stuff >
}
< bla bla >
}
I know I can put this number class into another Java file but due some
isseus(it got to be stored on a microcontroller ) I want everything in 1
..class file. Why is Internet Explorer too stupid to execute the applet or
am I doing something wrong?
Greetings,
Rick
Comment