Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想编译一个使用带有 javac 命令的 servlet 的 java 代码。所以我需要将servlet-api.jar 添加到jdk-11 中进行编译。
您不想将 servlet-api.jar 添加到 jdk 中。您想将 .jar 添加到您的类路径中。
您可以尝试以下方法:
javac -cp servlet-api.jar MainClass
您需要指定 .jar 和包含该main()方法的类的完整路径
main()