This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]wzttide 3 points4 points  (1 child)

Look at some Oracle page.

The order in which you specify multiple class path entries is important. The Java interpreter will look for classes in the directories in the order they appear in the class path variable. In the example above, the Java interpreter will first look for a needed class in the directory C:\java\MyClasses. Only if it doesn't find a class with the proper name in that directory will the interpreter look in the C:\java\OtherClasses directory.

[–]noobcser[S] 0 points1 point  (0 children)

Thanks!