我想通过 AQL 读取工件(.jar)中存在的文件而不下载工件

I want to read a file which is present in an artifact(.jar) via AQL without downloading the artifact

如何在不下载到本地的情况下读取工件的内容?

我只想运行一个读取或给出特定文件内容的AQL。

如何实现?

使用 Archive Entry Download 我们可以 read/get/download 压缩文件 比方说 MANIFEST.MF jar 文件,无需先下载工件,压缩它,然后再找到它。

http://localhost:8081/artifactory/repo1-cache/commons-lang/commons-lang/2.6/commons-lang-2.6.jar!/META-INF/LICENSE.txt

注意:“!”在 .jar 之后和“/META-INF/LICENSE.txt”

之前