| | |
java.lang.NoClassDefFoundError: JBuilder
Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
![]() |
•
•
Join Date: Sep 2006
Posts: 68
Reputation:
Solved Threads: 0
•
•
•
•
Ah, don't worry about that. i thought you were referencing a class, but you are using an IDE called JBuilder. My mistake.
Could you post your code up here? Remember to wrap it in [C0DE][/C0DE] tags.
import javax.swing.*;
import java.awt.*;
public class CreateGUI{
public void createAndShowGUI(){
JFrame myFram = new JFrame();
myFram.setDefaultCloseOperation(myFram.EXIT_ON_CLOSE);
Container contentPane = myFram.getContentPane();
JLabel myLable = new JLabel("hellow world");
contentPane.add(myLable);
myFram.pack();
myFram.setVisible(true);
}
}
public class TestGUI {
public static void main (String[] args){
CreateGUI myGui = new CreateGUI();
myGui.createAndShowGUI();
}
}
this is my simple programe.
[IMG]file:///C:/DOCUME%7E1/JANAKA%7E1/LOCALS%7E1/Temp/moz-screenshot.jpg[/IMG][IMG]file:///C:/DOCUME%7E1/JANAKA%7E1/LOCALS%7E1/Temp/moz-screenshot-1.jpg[/IMG][IMG]file:///C:/DOCUME%7E1/JANAKA%7E1/LOCALS%7E1/Temp/moz-screenshot-2.jpg[/IMG]the below is the error massage that i got
java.lang.NoSuchMethodError: main
Exception in thread "main"
but the most terrible problem is, when i copy these two classes into a new project that was created by same JBuilder IDE, it is running properly.
i want to find why is that
please help me
thanks
The compiler is having problems finding your main method. With a program this simple, one class is more than sufficient, so I'd suggest taking your main method out of TestGUI and trying to compile with it inside CreateGUI (btw, this should be called something more distinctive, like HelloWorld; a classname should tell you something about what the class is for).
Please anyone, correct me if I am wrong. It is the best way for me to learn.
![]() |
Similar Threads
- Exception in thread "main" java.lang.NoClassDefFoundError: Invaders Error (Java)
- exception in thread "main" java.lang.NoClassDefFoundError (Java)
- Following tutorials and getting java.lang.NoClassDefFoundError (Java)
Other Threads in the Java Forum
- Previous Thread: java image animation not working????
- Next Thread: cannot install jdk 5 beta version
| Thread Tools | Search this Thread |
Tag cloud for Java
affinetransform android api apple applet application arc arguments array arrays automation binary bluetooth businessintelligence chat class classes client code component database desktop draw ebook eclipse encode equation error event exception file fractal game givemetehcodez graphics gui helpwithhomework html ide image input integer intersect j2me java javaexcel javaprojects jmf jni jpanel julia linked linux list loop mac main map method methods mobile netbeans newbie number online open-source oracle parameter print problem program programming project properties recursion reference replaysolutions rotatetext scanner score screen scrollbar server set size sms socket sort sql string superclass swing template test threads time tree windows working xstream






