如何从 jar 文件、Netbeans、ant 创建 tar 文件

发布于 2024-08-11 14:22:52 字数 185 浏览 4 评论 0原文

你好,我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伏妖词 2024-08-18 14:22:52

显而易见的答案:使用 Ant tar 任务。您必须编辑 Netbean build.xml 文件并在 jar 文件之后调用 tar 任务。

我不是 Netbean 的重度用户,但这应该可以帮助您入门。

Obvious answer: use the Ant tar task. You will have to edit the Netbean build.xml file and invoke the tar task after the jar one.

I'm not a Netbean heavy user but this should get you started.

零度° 2024-08-18 14:22:52

请像下面这样使用。你必须提供 jar 的完整路径。在 build.xml 文件的内部标记中写入以下内容

<tar destfile="/root/NetBeansProjects/TextWandDesktop/store/TextWandDesktop.tar"
     basedir="/root/NetBeansProjects/TextWandDesktop/store/"/>

谢谢

Please use like below. U have to provide full path of jar. Write the following inside tag of build.xml file

<tar destfile="/root/NetBeansProjects/TextWandDesktop/store/TextWandDesktop.tar"
     basedir="/root/NetBeansProjects/TextWandDesktop/store/"/>

Thanks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文