java解压报错java.io.IOException: failed to skip current tar entry

#java解压出现java.io.IOException: failed to skip current tar entry
当使用如下函数解压:

AntBuilder antBuilder = new AntBuilder()
antBuilder.untar(src: source.tar, dest: 目标路径)

有时候会出现报错:java.io.IOException: failed to skip current tar entry,是解压工具的问题,本地用WinRAR解压也不能解压成功。
可使用TarUtil()解压:

new TarUtil().unTar( source.tar, 目标路径)

你可能感兴趣的:(java,java,解压)