Set Up Java Environment Variable Path

Java Environment Variable in Windows

Environmental variables are used by the operating system to save settings (default values, locations of resources) to be used by Windows or by processes launched by users. There are two types of environmental variables: User Variables : Specific to a particular Windows user account System variables : For all the user of the machine Most of the times these variables are usually defined and initialized automatically when you install the system or other applications like JDK but there are situations in which the user must manually define them. You can also do a check on this that the system variables for Java is automatically set or not.

Testing is done by opening command prompt. Go to Start and type cmd in the Run and hit Enter. It will launch the Command Prompt. Now type ‘javac‘:
1 C:\Users\lsharm>javac
If there is no system variable to indicate where to look for the this executable, the system will give an error like:
1 2 3
C:\Users\lsharm>javac ‘javac’ is not recognized as an internal or external command,  operable program or batch file.
The solution to this problem is Set Up Java Environment Variable Path given by setting the system variables: JAVA_HOME, PATH and CLASSPATH:

How to Set Up Java Environment System Variable/Path on Windows
After you’ve installed the Java Environment Kit (JDK) in Windows, you must set the JAVA_HOME environment variable to point to the JDK installation directory.
Step 1: Setting the JAVA_HOME Variable 1) Open the Control Panel ­> System or Security –> System; the same thing can be done by right­clicking on ‘MyComputer’ and choosingProperties.

2) Choose ‘Advanced system settings‘.

3) Under the Advanced tab Choose the ‘Environment Variable…‘ option.

4) Select New In the System variables.

5) Define the Variable name as ‘JAVA_HOME‘ and Variable value as ‘C:\Program Files\Java\jdk1.8.0_45‘ (for this example JDK version 1.8.0 was installed in ‘C:\Program Files\Java\jdk1.8.0_45‘ folder; if needed, modify this value to reflect the real location).
Note: Look at the previous chapter ‘Install the Java Development Kit’ to check the location of the JDK installation.

Step 2: Setting the PATH Variable 6) Now we need to specify the location in the PATH variable. For PATH, most probably it will already exists in your machine. So just select it and choose the Edit option.
7) In the editor add the value ‘;%JAVA_HOME%\bin‘ or ‘;C:Program Files\Java\jdk1.8.0_45\bin‘.

Note: The new values are separated by a semicolon from the existing ones and be carefull and do not make any changes in the existing string, as it is a very sensitive information.
8) Now go to Start and type cmd in the Run and hit Enter. It will launch the Command Prompt. Type ‘java ­version‘, it will display the following information.
Or type ‘javac‘ it will return the following Java Information:

1 2 3 4 5 6 7 8 9
C:\Users\lsharm>javac Usage: javac <options> <source files> where possible options include:   ­g                         Generate all debugging info   ­g:none                    Generate no debugging info   ­g:{lines,vars,source}     Generate only some debugging info   ­nowarn                    Generate no warnings   ­verbose                   Output messages about what the compiler is doing   ­deprecation               Output source locations where deprecated APIs are used

Note: Restart the computer in order to make your system aware of these changes or restart the system once you are done with the complete Appium installation process.