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.
类路径上的信息是否嵌入到类文件中?
我有一个 jar 文件,其中包含一个我试图编译 java 程序的类,但它永远找不到 jar 中的类。
我尝试使用 -cp path_to_the_jar 进行编译,但没有成功。
确保在类路径中包含 jar 本身(不仅仅是 jar 所在的目录):
javac -cp your_jar.jar YourJavaFile.java