如何从 jar 文件、Netbeans、ant 创建 tar 文件
你好,我有 netbeans 6.7.1。我的 build.xml 文件创建了一个 jar 文件。现在我想要 jar 和 tar 文件。我的 tar 文件必须从我的 jar 文件创建。那么如何通过在 build.xml 中进行一些更改来从我的 jar 文件创建 tar 文件。我认为它使用ant来创建jar文件。
谢谢 苏尼尔·库马尔·萨胡
Hi I have netbeans 6.7.1. My build.xml file creates a jar file. Now I want both jar and tar file. my tar file must be created from my jar file. SO how to create tar file from my jar file by making some changes in build.xml. I think it uses ant to create jar file.
Thanks
Sunil Kumar Sahoo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
显而易见的答案:使用 Ant
tar
任务。您必须编辑 Netbeanbuild.xml
文件并在jar
文件之后调用tar
任务。我不是 Netbean 的重度用户,但这应该可以帮助您入门。
Obvious answer: use the Ant
tar
task. You will have to edit the Netbeanbuild.xml
file and invoke thetar
task after thejar
one.I'm not a Netbean heavy user but this should get you started.
请像下面这样使用。你必须提供 jar 的完整路径。在 build.xml 文件的内部标记中写入以下内容
谢谢
Please use like below. U have to provide full path of jar. Write the following inside tag of build.xml file
Thanks