Netbeans 6.5 在创建 GUI 时生成 lib 文件夹
如何创建一个包含 lib 文件夹的 jar,以便我可以通过电子邮件发送单个 jar。 因为如果我不包含 lib 文件夹和 jar 文件夹,则 jar 将无法工作。
我想将 lib 文件夹添加到主 jar 中,这样我只需要向某人发送一个 jar 。
How do I create a jar that incorporates the lib folder so I can email a single jar. As it is if I don't include the lib folder and the jar folder the jar will not work.
I would like to add the lib folder to the main jar so I only need to send someone a single jar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现 这篇文章介绍如何使用 Ant jar 任务< /a> 将其他文件包含在 jar 中:
如果这不起作用,您还可以使用 zip 任务 压缩文件夹和 jar。
I found this article on using the Ant jar task to include other files in a jar:
If that doesn't work, you also might be able to use the zip task to zip up the folder and jar.