954,206 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

how to javac mycode.java and swing-layout-1.0.jar

I have a code generated with netBeans. It use org.jdesktop.layout. I have the file swing-layout-1.0.jar. But I don't know how to compile and run mycode.jave with that jar file.
Please write full comands if possible. I'm so new to java that every step use me 2 hours - 2 days. Thanks a lot.

dajiebuda
Newbie Poster
8 posts since Jun 2007
Reputation Points: 10
Solved Threads: 0
 

you need to setup CLASSPATH to your JAR file and then you will be able to compile your code simple way

peter_budo
Code tags enforcer
Moderator
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 901
 

my code is in fold Myfold. the jar file is in another fold c:\programs...

I run javac in c:\myfold.

I need to complie both mycode and the jar code together. Please tell me what I can do.

dajiebuda
Newbie Poster
8 posts since Jun 2007
Reputation Points: 10
Solved Threads: 0
 

As I said previously you need to set CLASSPATH to location of JAR file. By doing so you tell your machine where the JAR can be found. So what you do is as follow:
Start > Control Panel > System
here select tab Advanced > Environment Variables
In system variables check if you have CLASSPATH, if not press New
In Variable name : type in capitals CLASSPATH and in Variable value : insert full path yo your JAR file which can be for example like this C:\Development\Custom_lib\swing-layout-1.0.jar;
I would recomend you restart your machine as this changes do not always take place after editing so it is better to restart system. Once this done you can compile your code as simple as this javac mycode.java

peter_budo
Code tags enforcer
Moderator
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 901
 

You can also set the classpath as a parameter when you execute javac:

javac -cp "c:/program..swing-layout-1.0.jar" myCode.java
Ezzaral
Posting Genius
Moderator
15,985 posts since May 2007
Reputation Points: 3,250
Solved Threads: 847
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You