[求助]Applet编译问题
APPLET 要怎么编译,用jcreator编译出现这个
exception in thread "main"java.lang.nosuchmethoderror:main
我想知道是编译器的问题,还是我运行方式有错,谁知道的请告诉下吧,,谢了,
import java.awt.*;
import java.applet.*;
public class exam5_3 extends Applet
{
Label lab1,lab2;
TextField text1,text2;
public void init()
{
lab1=new Label("INPUT NAMW");
lab2=new Label("INPUT Year");
lab1.setBackground(Color.red);
lab2.setBackground(Color.green);
text1=new TextField(10);
text2=new TextField(10);
add(lab1); add(text1);
add(lab2); add(text2);
}
}
[此贴子已经被作者于2007-6-2 14:07:29编辑过]