在我的程序中一切正常嗎?
當我運行它出現一個屏幕,但它說,小程序未初始化獲取Applet未初始化錯誤
import java.applet.Applet;
import java.awt.*;
import javax.swing.*;
public class JobseekerLogin extends Frame {
public void CreateFrame(){
Frame frame = new Frame("Frame in Java Swing");
frame.setSize(400, 400);
frame.setVisible(true);
Label lb = new Label("Username");
add("East",lb);
add("West",new TextArea(""));
Label lb1 = new Label("Password");
add("East",lb1);
add("West",new TextArea(""));
}
public static void main(String []args){
JobseekerLogin obj = new JobseekerLogin();
obj.CreateFrame();
}
}
非常感謝你,我是新來的Java。你能指引我到任何網站或什麼地方,我可以瞭解更多關於它? – 2013-05-10 08:45:16
請按照下列步驟操作:[Java小程序](http://docs.oracle.com/javase/tutorial/deployment/applet/) – Reimeus 2013-05-10 11:15:51