English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

could you please tell me
what is the difference between setting PATH and CLASSPATH variables?

2006-07-04 18:22:43 · 6 answers · asked by Aslam 1 in Computers & Internet Programming & Design

6 answers

The CLASSPATH is an environment variable that tells the Java compiler javac.exe where to look for class files to import or java.exe where to find class files to interpret.

In contrast, the PATH is an environment variable that tells the command processor the where to look for executable files, e.g. *.exe, *.com and *.bat files. The Classpath is one of the most confusing things in Java.

So whatever you enter in the PATH, the command processor will look for it first if your executing a exe, com or bat file. So IF I open my console and input tester, the computer will see if it is in the PATH first if not it checks the SYSTEM32 if not exist there then it says not found. The classpath is not only for java but for many programming languages.

If your not dealing with programming languages then don't touch it, if your simply adding a new env var within your system so you can access it anywhere just append PATH

Hope you understand a bit :)

2006-07-04 18:44:05 · answer #1 · answered by ? 6 · 0 0

The CLASSPATH is an environment variable that tells the Java compiler javac.exe where to look for class files to import or java.exe where to find class files to interpret.

In contrast, the PATH is an environment variable that tells the command processor the where to look for executable files, e.g. *.exe, *.com and *.bat files. The Classpath is one of the most confusing things in Java

2006-07-04 18:54:49 · answer #2 · answered by george 4 · 0 0

classpath is for setting the path of some programming languages like java,oracle etc
path is for just loading the variables

2006-07-04 18:45:53 · answer #3 · answered by praveen s 1 · 0 0

path is the url for executing the exe file of the program.
and classpath is the class name for executing that.
classpath may have more than one for appln and path is single to that
.

2006-07-04 18:40:29 · answer #4 · answered by jacky 2 · 0 0

the path ecosystem variable encompasses a itemizing of directories the place domicile windows looks for software archives ( .exe archives) . The CLASSPATH variable is a itemizing of directories the place the Java runtime looks for Java instructions to run(.classification archives).

2016-12-10 04:41:14 · answer #5 · answered by ? 4 · 0 0

http://tricks.softwaretreasure.com/2013/11/exact-difference-between-path-and.html

2013-11-24 18:02:30 · answer #6 · answered by Faruk 1 · 0 0

fedest.com, questions and answers