Details
Description
The common-compress-1.4.1 api says it supports unlimited file sizes for tar and untar operations. http://ant.apache.org/antlibs/compress/
Only Untar operations on a file > 8GB is fixed,
But creating a tar on a file >8GB is not working.
When I try to do " tarOutputStream.putArchiveEntry(archiveEntry); "
i get the below exception.
java.lang.RuntimeException: entry size '9633985364' is too big ( > 8589934591 )
at org.apache.commons.compress.archivers.tar.TarArchiveOutputStream.failForBigNumber(TarArchiveOutputStream.java:572)
at org.apache.commons.compress.archivers.tar.TarArchiveOutputStream.failForBigNumbers(TarArchiveOutputStream.java:557)
at org.apache.commons.compress.archivers.tar.TarArchiveOutputStream.putArchiveEntry(TarArchiveOutputStream.java:297)
Looking for a fix ..