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,什么是源 JAR?为什么需要它们?我在这句话中看到了:依赖的jars可以在libs文件夹中找到,对应的源jars可以在libs-sources文件夹中找到。
这将取决于确切的上下文。最有可能的:
Dependent JAR - 是应用程序所依赖的 java 库文件,常见的例子是第三方库。它包含 .class 文件。对应的源jars - 使用jar实用程序打包的依赖jar的java源代码。它包含 .java 文件。