943,724 Members | Top Members by Rank

Ad:
  • Java Discussion Thread
  • Unsolved
  • Views: 3131
  • Java RSS
Sep 19th, 2006
0

java.lang.NoClassDefFoundError: JBuilder

Expand Post »
I got an error as "java.lang.NoClassDefFoundError: JBuilder".my programe is create simple jframe and show hellow world on it.
i think this is some problem with JBuilder, because when i run the same programe with "IntelliJ IDEA" did not get that error.

thank you.
Similar Threads
Reputation Points: 10
Solved Threads: 0
Junior Poster in Training
rpjanaka is offline Offline
69 posts
since Sep 2006
Sep 19th, 2006
0

Re: java.lang.NoClassDefFoundError: JBuilder

Check that you have JBuilder imported. If you do, and it still doesn't work, we'll need to see some code.
Reputation Points: 22
Solved Threads: 11
Posting Whiz in Training
DavidRyan is offline Offline
229 posts
since Jul 2006
Sep 19th, 2006
0

Re: java.lang.NoClassDefFoundError: JBuilder

Click to Expand / Collapse  Quote originally posted by DavidRyan ...
Check that you have JBuilder imported. If you do, and it still doesn't work, we'll need to see some code.

sory i was unable to understand what is mean by "JBuilder imported". this is the first time im using JBuilder.


thank you.
Reputation Points: 10
Solved Threads: 0
Junior Poster in Training
rpjanaka is offline Offline
69 posts
since Sep 2006
Sep 19th, 2006
0

Re: java.lang.NoClassDefFoundError: JBuilder

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.
Reputation Points: 22
Solved Threads: 11
Posting Whiz in Training
DavidRyan is offline Offline
229 posts
since Jul 2006
Sep 19th, 2006
0

Re: java.lang.NoClassDefFoundError: JBuilder

Click to Expand / Collapse  Quote originally posted by DavidRyan ...
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
Reputation Points: 10
Solved Threads: 0
Junior Poster in Training
rpjanaka is offline Offline
69 posts
since Sep 2006
Sep 19th, 2006
0

Re: java.lang.NoClassDefFoundError: JBuilder

how are you calling the thing?
You're doing something wrong, which is typical of people stepping outside the world of IDEs for the first time.
Team Colleague
Reputation Points: 1658
Solved Threads: 331
duckman
jwenting is offline Offline
7,719 posts
since Nov 2004
Sep 19th, 2006
0

Re: java.lang.NoClassDefFoundError: JBuilder

Do you have two class files or do you have only one class file?
Reputation Points: 11
Solved Threads: 8
Posting Whiz in Training
hooknc is offline Offline
216 posts
since Aug 2005
Sep 19th, 2006
0

Re: java.lang.NoClassDefFoundError: JBuilder

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).
Reputation Points: 22
Solved Threads: 11
Posting Whiz in Training
DavidRyan is offline Offline
229 posts
since Jul 2006

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in Java Forum Timeline: java image animation not working????
Next Thread in Java Forum Timeline: cannot install jdk 5 beta version





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC