jar -uf 正在删除jar内的文件
我正在使用 jar -uf 来更新我的 MANIFEST.MF 文件,如下所示
: jar xf jarfile.jar META-INF\MANIFEST.MF
b.编辑文件
c. jar uf jarfile.jar META-INF\MANIFEST.MF
但是“uf”命令正在从我的 jar 中删除 MANIFEST.MF。 更改 jar 内文件的正确方法是什么(Windows 7,jdk 1.6)?
I am using jar -uf to update my MANIFEST.MF file like this:
a. jar xf jarfile.jar META-INF\MANIFEST.MF
b. edit the file
c. jar uf jarfile.jar META-INF\MANIFEST.MF
But the 'uf' command is removing MANIFEST.MF from within my jar.
What is the right way to change a file inside a jar (windows 7, jdk 1.6)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了更新清单文件,jar 命令提供了不同的选项 -
示例 @ http ://java.sun.com/developer/Books/javaprogramming/JAR/basics/update.html
For updating the manifest file the jar command provides different option -
examples @ http://java.sun.com/developer/Books/javaprogramming/JAR/basics/update.html
您始终可以使用 winrar (或任何等效工具)打开 jar,然后拖放文件。为我工作。
You can always use winrar (or any equivalent) to open the jar, and drag/drop the files. worked for me.
清单文件有一个特殊选项 (m): http://download.oracle.com/javase/1.4.2/docs/tooldocs/windows/jar.html
你能尝试一下吗
There is a special option (m) for the manifest file: http://download.oracle.com/javase/1.4.2/docs/tooldocs/windows/jar.html
Could you try with