tags:

views:

40

answers:

1

Hi,

Does anybody knows how could one programmatically decompress an archive in android ?

+1  A: 

You can use ZipInputStream.

Just search google for how to decompress files in java, there are tons of tutorials.

Macarse
Could there be a problem if a file is compressed with gzip and I try to decompress it like a zip archive ?
rantravee
@klaus-vlad: GZIPInputStream: This class is a part of java.util.zip package.
Macarse