0

I need some help really fast. I am having troubles with unzipping a file that I have downloaded to my phone as a background process in the app that I am building. The code that I have downloads a zip file from a server that I have set up specifically for the app. The zip file is not corrupted or anything like that. But if you guys could help me find a way to unzip the file that would be fantastic I have tried a few different ways and I cant seem to get it right. :/

Aaron B
  • 461
  • 1
  • 5
  • 21

2 Answers2

1

You can use open source "zt-zip" to solve your problem:zt-zip

UperOne
  • 195
  • 10
0

I use zip4j at the moment - here an example usage: https://github.com/ligi/PassAndroid/blob/master/src/main/java/org/ligi/passandroid/ui/UnzipPassController.java#L66

ligi
  • 39,001
  • 44
  • 144
  • 244