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);
}
誰かが私に何が悪いのか教えてもらえますか?フォームがGood.jpgのようになるように、メインで請負業者を呼び出すにはどうすればよいですか?