vote up 0 vote down star

Hello, I am new using java and netbeans. I want to make a swing gui, and I already followed this step (http://www.netbeans.org/kb/60/java/quickstart-gui.html#top) but when I run this, nothing happens and I don't see anything.

What should I fill in here?

public void main (string args[]) {

    ???????????????

}
flag

25% accept rate
why the negs? Surely a newbie asking a programming question is what this is all about? A comment asking for more info might be better! – Preet Sangha Mar 31 at 18:16
Why rate this question negatively? It's a newbie Java question... – Jon Mar 31 at 19:00

4 Answers

vote up 0 vote down

This is the entry point into the application, or the first thing called by Java to start your application. You should possibly create a new instance of your class here. I see it's called ContactEditor so if you've named it this you should be able to do:

ContactEditor contactEditor = new ContactEditor();

After this you might need to call a method within that class, but I can't help you anymore than this unless you post the source code you currently have.

link|flag
vote up 0 vote down

Maybe you should start here: http://www.netbeans.org/kb/docs/java/quickstart.html

link|flag
vote up 0 vote down

nothing happens -> probably Netbeans is indicating an error somewhere near the "??????????" (I don't use Netbenas).
First, there are some errors in your code:

  • main must be static
  • String is with an uppercase S

I would sugest to start with a simple Hello World (kind of):

public static void main(String args[]) {
    System.out.println("Papaa");
}

if this works - print "Papaa" on the console - you can go on creating an instance of your class.

link|flag
vote up 0 vote down

If you have followed the instructions in the linked tutorial, this project should not have a Main class. In Step 5. of the Create a Project step you should have cleared the Create Main Class check box.

Ensure that the Set as Main Project checkbox is selected and clear the Create Main Class field.

I suggest that you restart the tutorial and try again. Good Luck.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.