本文介绍了使用Maven在zip中解压缩内部zip的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我可以通过maven-dependency插件解压缩zip文件,但是目前我遇到的问题是,在该zip文件中还包含其他zip文件,我也需要解压缩它们.我该怎么办?
I can unpack zip file via the maven-dependency plugin, but currently I have the problem that inside that zip file other zip files are include and I need to unpack them as well. How can I do this?
推荐答案
您可以使用ant taskRunner插件解压缩任何文件:
You can unzip any files using ant task runner plugin:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>prepare</id>
<phase>validate</phase>
<configuration>
<tasks>
<echo message="prepare phase" />
<unzip src="zips/archive.zip" dest="output/" />
<unzip src="output/inner.zip" dest="output/" />
<unzip dest="output">
<fileset dir="archives">
<include name="prefix*.zip" />
</fileset>
</unzip>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
这篇关于使用Maven在zip中解压缩内部zip的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!