Originally posted by Manuel Comnenus:
javac -classpath \f:\tomcat\common\lib\servlet-api.jar:classes:. -d classes src\com\example\web\BeerSelect.java
Two things:
1.) On windows systems, the delimter is a semi-colon ";", not a colon ":".
2.) Why is there a backslash at the beginning?
Starting a path with a backslash on windows means "go to the root of this
drive then look for a directory named "f:", then look for one named
"tomcat" etc.
Try:
-classpath f:\tomcat\common\lib\servlet-api.jar;classes;.