给定类似的 URL jar:file:///path/to/some/file.jar/path/inside/zip/hello.txt
,如何自动解压缩并从指定的存档中输出指定的文件?
unzip
显然可以编写使用或jar
或的脚本7z
,但也许已经存在可以接受 URL 的工具?
答案1
jar 文件是 zip 文件,因此您可以执行以下操作:
$ unzip -c file.jar file_to_extract
并且文件将被解压缩并显示。
给定类似的 URL jar:file:///path/to/some/file.jar/path/inside/zip/hello.txt
,如何自动解压缩并从指定的存档中输出指定的文件?
unzip
显然可以编写使用或jar
或的脚本7z
,但也许已经存在可以接受 URL 的工具?
jar 文件是 zip 文件,因此您可以执行以下操作:
$ unzip -c file.jar file_to_extract
并且文件将被解压缩并显示。