Setting Path on Windows.
For Windows XP:
For Windows XP:
- Start -> Control Panel -> System -> Advanced
- Click on Environment Variables, under System Variables, find PATH, and click on it.
- In the Edit windows, modify PATH by adding the location of the class to the value for PATH. If you do not have the item PATH, you may select to add a new variable and add PATH as the name and the location of the class as the value.
- Close the window.
- Reopen Command prompt window, and run your java code.
For Windows Vista:
- Right click “My Computer” icon
- Choose “Properties” from context menu
- Click “Advanced” tab (“Advanced system settings” link in Vista)
- In the Edit windows, modify PATH by adding the location of the class to the value for PATH. If you do not have the item PATH, you may select to add a new variable and add PATH as the name and the location of the class as the value.
- Reopen Command prompt window, and run your java code.
Setting Path on Solaris and Linux
To find out if the java executable is in your PATH, execute:
% java -version
This will print the version of the java executable, if it can find it. If you get error java: Command not found. Then path is not properly set.
To find out which java executable the first one found in your PATH, execute:
% which java
Below are the steps to set the PATH permanently,
Note: We are here giving instructions for two most popular Shells on Linux and Solaris.
Please visit link below if you are using any other shells.
For bash Shell:
- Edit the startup file (~/ .bashrc)
- Modify PATH variable:
PATH=/usr/local/jdk1.6.0/bin - export PATH
- Save and close the file
- Open new Terminal window
- Verify the PATH is set properly
% java -version
For C Shell (csh):
- Edit startup file (~/ .cshrc)
- Set Path
set path=(/usr/local/jdk1.6.0/bin ) - Save and Close the file
- Open new Terminal window
- Verify the PATH is set properly
% java -version
0 Comments:
Post a Comment