The java class path, class search path, classpath thing

Опубликовано: 26 Июль 2026
на канале: Brent Sullivan
502
8

The java class search path, “class path”, "classpath", is the path that the Java Runtime Environment searches for classes and other resource files.

Corresponding blog: https://brentsullivan.pizza/java/2018...

Useful command to simplify output from javac -verbose:

$ javac \
-verbose \
-classpath "" \
-extdirs "" \
-bootclasspath "/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/rt.jar" \
Pizza.java