What is the best way to read and unzip files in mobile browsers?
I want to read and unzip files in mobile browsers on iPhon开发者_如何学编程e and Android, what is the best possible solution. Is there a java script way, I don't want a round trip to server. I need the minimal dependency, so flash is ruled out, any other options?
Javascript has no file access so it cannot access the zip files stored on disk ..
--
Take a look at
- JSXCompressor, which zip/unzip implementation in javascript (although you need to somehow feed it the data ..)
There's a Javascript library that unzips basic ZIP files. Unzipping zip archives with JavaScript in Firefox 3.6
精彩评论