When i run the Main00App.java from appletviewer i have Start: applet not initiated. The commented html is read because i can resize the window using the width and height.
import java.awt.*;
import java.applet.*;
/*
<applet code="Main00App.class" width=200 height=150>
</applet>
*/
public class Main00App extends Applet {
public void paint(Graphics g) {
g.drawString("Java applet", 10, 20);
}
}
I think so that you need to run following program by command line using the applet viewer:
I had run the following program. It works for me.