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.
如何创建一个包含 lib 文件夹的 jar,以便我可以通过电子邮件发送单个 jar。因为如果我不包含 lib 文件夹和 jar 文件夹,jar 将无法工作。
我想将 lib 文件夹添加到主 jar 中,所以我只需要向某人发送一个 jar。
我发现这篇关于使用 Ant jar 任务在 jar 中包含其他文件的文章:
Ant Jar 任务实际上允许您包含多个zipfileset作为子元素。您可以使用 zipfileset 在您的(大)jar 文件中包含其他 jar(和 zip 文件)的内容。
如果这不起作用,您也可以使用zip 任务来压缩文件夹和 jar。