简体   繁体   中英

add 2 classpath in 1 command line

I have problems to compile this, im trying to add 2 classpath but it fail

javac -cp C:\xampp\tomcat\lib\servlet-api.jar : C:\xampp\tomcat\webapps\examen\WEB-INF\classes ErabiltzaileKontuaEzabatuServlet.java

in the first i add the.jar, and the second is for the classes inside that folder.

The first thing to notice is the space around : that should not exist. The other thing is the classpath separator. Judging by the C:\ you are using Windows, so the path separator is a semicolon ( ; ) instead of a colon ( : ).

The following should do:

javac -cp C:\xampp\tomcat\lib\servlet-api.jar;C:\xampp\tomcat\webapps\examen\WEB-INF\classes ErabiltzaileKontuaEzabatuServlet.java

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM