vote up 1 vote down star

Hello,

I am Java beginner. I have developed only two Java desktop applications and I use Eclipse as IDE. Right now I wanted to work on this project https://nbjfuguesupport.dev.java.net/ All code is in Netbeans. I suceeded to import all libraries that are used in source files in eclipse, and I have no errors showing in code in Eclipse. The problem is that I don't know how to run that code from eclipse. I don't know which class has main method.

Using google I found out that Netbeans uses org.netbeans.core.startup.Main.main to start projects, but I cant't find this in my libraries. Does anyone know in which .jar does this class come with netbeans 5.5 files. ??

Regards.

P.S. I must use Eclipse because I have a team of 3 men who have also only used Eclipse in the past, and we need this code to help us in similar project for college.

flag

40% accept rate
NetBeans isn't that different from Eclipse. – mmyers Oct 13 at 23:24
1  
Somehow it strikes me as a bit odd to insist on developing a project based on the Netbeans Platform in Eclipse... – fvu Oct 13 at 23:31

1 Answer

vote up 1 vote down check

You can find the core.jar file that contains Main class under:

C:\Program Files\NetBeans 5.5\platform10\core\

You can simply include that in your Eclipse Java Build path.

link|flag
Thank you, that worked great. Now I have the error complaining about netbeans.user property not being set when I try to run from Eclipse. – ZeKoU Oct 14 at 10:01
1  
Try running in NetBeans; you'll save yourself a lot of trouble configuring the project, and the learning curve coming from Eclipse isn't that steep. – mmyers Oct 14 at 14:00

Your Answer

Get an OpenID
or

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