How to set the environment variables for java in windows (the classpath )
feedback
|
|
In Windows inorder to set Step 1 : Right Click on MyComputer and click on properties . Step 2 : Click on Advanced tab |
Nice explanation. One small thing in step 6: Don't type $java or $javac, but just java or javac. – Jesper Nov 4 '09 at 9:43 |
|
And note that you must add the JDK bin directory to the PATH environment variable; just setting JAVA_HOME is not enough. – Jesper Nov 4 '09 at 9:44 |
|
yeah sorry since im a Linux lover . i missed it will change it , Thanks – Srinivas M.V. Nov 4 '09 at 9:44 |
|
Under Windows: http://vlaurie.com/computers2/Articles/environment.htm Under Linux: http://lowfatlinux.com/linux-environment-variables.html And of course, you can retrieve them from Java using:
| |||
|
feedback
|
|
The JDK installation instructions explain exactly how to set the Normally you should not set the | |||
feedback
|
|
In programming context you can execute SET command (SET classpath=c:\java) or Right click on your computer > properties > advanced > environment variables. In a batch file you can use
| |||||
|
feedback
|
|
For deployment better to set up classpath exactly and keep environment clear. Or at *.bat (the same for linux, but with correct variables symbols):
Or at command line or *.bat (for *.sh too) if classpath id not very long:
| |||
|
feedback
|
|
Keep in mind that the In case of JAR files, the classpath is to be definied as In case of an IDE, you have the so-called 'build path' which is basically the classpath which is used at both compiletime and runtime. To add external libraries you usually drop the JAR file in a (either precreated by IDE or custom created) | |||||
feedback
|



