What Is Difference Between Path And Classpath ?
Answers
Answered by
1
Path and Classpath are operating system level environment variales.
path is used define where the system can find the executables(.exe) files and classpath is used to specify the location .class files.
Answered by
3
Answer:
The path points to the location of the jre i.e. the java binary files such as the jvm and necessary libraries. The classpath points to the classes you developed so that the jvm can find them and load them when you run your product
Similar questions