Different Ways to Set a Classpath in Java

Java Virtual Machine(JVM) uses classpath to locate the class files to execute the code. If your classpath is not set and the class file is not present in the same directory as your java file, then JVM will be unable to find the required class file, and it will throw an error (java.lang.ClassNotFoundException).
error caused while JVM is interpreting the code
Ways to Set a ClasspathÂ
There are five different ways to set a classpath. These are:
- -cp
- -classpath
- âclasspath
- Temporary settings by using the âset classpathâ command
- Permanent settings using environment variable window
The limitation of âcp,âclasspath, and âclass-path methods is that it can set classpath only for the current command line, in the next command line, if we access the desired class directly, we will get an Exception
Syntax:
>java -cp <directory_location> <class name>
Example:
Java
// This code is located in F:\workspace\src// It's class file is located in F:\workspace\binclass GFG {Â Â Â Â public static void main(String[] args)Â Â Â Â {Â Â Â Â Â Â Â Â System.out.println("GFG!");Â Â Â Â }} |
how to set classpath by using -cp command
Command Line Settings â
>java -cp <directory_location> <class name>
         OR
>java -classpath <directory_location> <class name>
         OR
>java --class-path <directory_location> <class name>
- If we want to access classpath for all command lines, we must set the classpath command option.
- The limitation of the âset classpathâ command option is the classpath settings are available only for the current command prompt.
Temporary Settings:
>set classpath=<directory_location>
the temporary setting of classpath using âset classpathâ command
If we want to have classpath settings permanently for all the command prompts, we must set classpath in the environment variable section.Â
Permanent Settings:
- Firstly, Right Click on âThis PCâ.
- Click Properties.
- Click âAdvanced System Settingsâ.
- Click âEnvironment Variablesâ.
- In the âUser Variable Sectionâ, click the âNewâ button.
- Enter Variable name :classpath [Donât give space between class path] Variable value:<directory_location>(for example in my F:\workspace\bin)
- Click OK->OK->OK.
- Close all windows, open a new command prompt, and run the java command
Environment Variables Setting
permanent classpath settings
Â
We must include .; in the classpath beginning so that the JVM can access both the current working directory and the directory of the desired class file, respectively.
>java -cp <.;directory_location> <class name>
Importance of â.â in the classpath
If we set classpath pointing to one directory, if we donât place (dot), the classes available in the current working directory will not be found by compiler and JVM. â.â represents the current working directory. The current working directory means not the folder where you save the .java file, the folder path where you open the command prompt.Â
Syntax to include multiple paths in the classpath
We must separate each folder location with a semicolon separator.
java -cp ./folder1/*;./folder2/*;./folder3/* com.xyz.MainClass
Note â The algorithm followed by the compiler and JVM for finding classes from classpath is First Come First Execute.
Difference between path and classpath searching algorithm priority
- Command prompt software will give first priority to present the working directory. In the present working directory, if the binary file is unavailable, only consider the path variable.
- Compiler and JVM first look for classpath.
- If a classpath is not created, then only they will search in the current working directory.
- If a classpath is created, they donât look into the current working directory, only the classpath folder.
Note â Generally in the Developer community, the first 4 types are recommended, they try to avoid using the permanent settings using the environment variable window.Â



