Monday, September 30, 2013

How to set path of JDK in Windows

How to set path of JDK in Windows:

  1. How to set path of JDK in Windows OS
    1. Setting Temporary Path of JDK
    2. Setting Permanent Path of JDK
  2. How to set path of JDK in Linux OS

Path is required for using tools such as javac, java etc. If you are saving the java file in jdk/bin folder, path is not required.But If you are having your java file outside the jdk/bin folder, it is necessary to set path of JDK. There are two ways to set path of JDK:
  1. temporary
  2. permanent

1)Setting temporary Path of JDK in Windows:

For setting the temporary path of JDK, you need to follow these steps:
  • Open command prompt
  • copy the path of bin folder
  • write in command prompt: set path=copied path

For Example:

set path=C:\Program Files\Java\jdk1.6.0_23\bin
      
Let's see it in the figure given below:

how to set path in java


2)Setting Permanent Path of JDK in Windows:

For setting the permanent path of JDK, you need to follow these steps:
  • Go to MyComputer properties -> advanced tab -> environment variables -> new tab of user variable -> write path in variable name -> write path of bin folder in variable value -> ok -> ok -> ok

For Example:

1)Go to MyComputer properties
how to set path in java

2)click on advanced tab
how to set path in java

3)click on environment variables
how to set path in java

4)click on new tab of user variables
how to set path in java

5)write path in variable name
how to set path in java
6)Copy the path of bin folder
how to set path in java

7)paste path of bin folder in variable value
how to set path in java

8)click on OK button
how to set path in java

9)click on OK button
how to set path in javaNow your permanent path is set.You can now execute any program of java from any drive.


Setting Path in Linux OS

Setting the path in Linux OS is same as setting the path in the Windows OS. But here we use export tool rather than set. Let's see how to set path in Linux OS:


export PATH=$PATH:/home/jdk1.6.01/bin/
      

Here, we have installed the JDK in the home directory under Root (/home).

 

0 comments:

Comment here / Ask your Query !!