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"