From NetBeans to JCreator

Hello,This problem may have been asked but I couldn't find the answer. Sorry if it is asked before.I have codes written in NetBeans and JCreator. I have to combine these codes in JCreator. How could i convert my NetBeans codes into Jcreator?Thanks...
[279 byte] By [FuRK@Na] at [2007-11-27 4:50:02]
# 1

Didn't get it? Both Netbeans and JCreator are tools/editor for java. Code written in one should be directly usable in the other.

Only thing I see is if you have used the netbeans provided classes. In that case, you have to put the jars in the system classpath and/or reference them in the jcreator project.

Shouldn't be tough. All the best.

bschandramohana at 2007-7-12 10:03:15 > top of Java-index,Java Essentials,New To Java...
# 2

Netbeans uses some specific libs that do not exist in JCreator, then you must add these libs manually to JCreator, it is not enough to copy them to the class path dir.

form JCreator window open Configure menu and choose Options. then select JDK Profiles from the left pane tree. on the right pane select JDK version 1.x.x and push the Edit... button. from the Classes tab press Add button and select Add Archive... then browse your lib(s).

good luck.

Ahmad Elsafty

NourElsaftya at 2007-7-12 10:03:15 > top of Java-index,Java Essentials,New To Java...
# 3
Thanks a lot... To copy lib files and doing other changes worked. In addition, I found some software which make this convertion and automatically finds used java files in NetBeans and copy them into jcreator but they are complicated.
FuRK@Na at 2007-7-12 10:03:15 > top of Java-index,Java Essentials,New To Java...