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.
在编写我的项目时,我使用了许多 API 和库。项目编译 - 我已将 .jars 添加到我的类路径中 - 但是,相关的 .class 文件未添加到最终 jar 中。有没有办法强制这样做?我没有使用像 Eclipse 这样的 IDE(老实说,我不希望这样做)。
不,这些类并不意味着要添加到您的 jar 文件中。相反,这个想法是您提供 3rd 方 jar 文件以及您自己的 jar 文件。如果您真的只需要一个 jar 文件,则需要将所有 jar 文件合并在一起 - 但我强烈建议您不要这样做,除非它绝对重要。(您需要弄清楚如何合并清单等)。