Open In App

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:



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:




// This code is located in F:\workspace\src
// It's class file is located in F:\workspace\bin
class 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>

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:

  1. Firstly, Right Click on “This PC”.
  2. Click Properties.
  3. Click “Advanced System Settings”.
  4. Click “Environment Variables”.
  5. In the “User Variable Section”, click the “New” button.
  6. Enter Variable name :classpath [Don’t give space between class path] Variable value:<directory_location>(for example in my F:\workspace\bin)
  7. Click OK->OK->OK.
  8. 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

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. 


Article Tags :