我正在使用 NetBeans 编写一个 Java 项目。当我告诉 NetBeans 将表单作为主类打开时,它会像这样打开它:
http://dl.dropbox.com/u/12868212/Good.jpg
但我想使用我编写的特定主类,它调用上述表单的构造函数,我得到:
http://dl.dropbox.com/u/12868212/Bad.jpg
构造函数代码:
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
//Updating Global Variables Class:
GlobalVariables.Update_Global_Variables_From_Configuration_XML();
Form_StudentPresentation form_StudentPresentation =
new Form_StudentPresentation();
form_StudentPresentation.setVisible(true);
}
有人可以告诉我有什么问题吗?我如何在 main 中调用构造函数以使表单看起来像 Good.jpg?