OSX 上浏览档案(Ear、War、Jar)的好工具

发布于 2024-11-14 10:13:52 字数 1536 浏览 5 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

罪#恶を代价 2024-11-21 10:13:52

任何可以在不解压文件的情况下打开文件的 OS X ZIP 实用程序都可以。或者,打开终端窗口并键入:

jar tvf <filename.jar>

您可以将文件从 Finder 拖到终端窗口,它会为您填充文件名。您还可以将输出通过管道传输到 less 中以上下滚动。

jar tvf <filename.jar> | less

Any OS X ZIP utility that can open files without unpacking them will do. Alternatively, open a terminal window and type:

jar tvf <filename.jar>

You can drag the file from Finder to the Terminal window, and it will populate the filename for you. You can also pipe the output into less to scroll up and down.

jar tvf <filename.jar> | less
等待我真够勒 2024-11-21 10:13:52

我将其复制到“.zip”文件,然后使用我的 zip 实用程序查看内部。

.ear.war.jar 只是 zip 文件,其中包含其他必需的项目。

如果您想提取内容,可以解压它们。 Java 包含一个 jar 命令,该命令提供压缩/解压缩档案的能力(以及额外验证档案是否正确的 jar 文件)。

I copy it to a ".zip" file and then use my zip utilities to peek inside.

.ears, .wars, and .jars are just zip files with additional required items packed inside.

If you want to extract the contents, you can unzip them. Java contains a jar command that provides ability to zip / unzip the archives (and extra verifications that the archives are properly jar files).

看春风乍起 2024-11-21 10:13:52

您可能还想尝试一下 Jarzilla

You may also want to give Jarzilla a try.

耶耶耶 2024-11-21 10:13:52

如果您还不能执行此操作,请确保您可以看到 *.jar 上的文件扩展名。将名称更改为 *.zip,这样您就可以像 ZIP 文件一样打开该文件(确实如此)。当您使用完 *.class 文件后,将其更改回 *.jar,以便您可以执行该文件。

尽管这有点乏味,但它不需要安装任何新程序,因此可以在任何计算机上完成,无论是否具有管理员权限。

If you can't already do it, make sure you can see the file extension on the *.jar. Change the name to *.zip, which will allow you to open the file as if it were a ZIP file (which it is). When you're done playing with the *.class files, change it back to *.jar so you can execute the file.

Although this is somewhat tedious, it doesn't require any new program installations and thus can be done on any computer, with or without admin rights.

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