Skip to content Skip to sidebar Skip to footer

Android Get Compressed Size Of A File In A Zipfile

Is there a way to get the compressed filesize of one file inside a zip archive? ZipEntry.getSize() gives the uncompressed size.

Solution 1:

That was easy to find out...

zentr.getCompressedSize();http://developer.android.com/reference/java/util/zip/ZipEntry.html#getCompressedSize()

Post a Comment for "Android Get Compressed Size Of A File In A Zipfile"