ZipManager is a native extension to extract (unzip) zipped files, compress files & folders and download files from Internet on Android devices. It allows the application to zip and unzip files on the sdcard, as wel as receive information of files or folders within a zipped file.

It’s possible to easily download files from the internet and store them at a specific location. When downloading a file several different events are fired to inform about the process. Some information include the size of a file and the amount of data already downloaded.

Sample

// set Extension var
var _ex:ZipManager; 

// initialize the extension
_ex = new ZipManager();

// This method checks whether the zipped file exists in the given address or not.
_ex.existFile("zipFileAddress"); 

// This method returns the zip file data in form of a Json file.
_ex.getFileContentJson("zipFileAddress"); 

// This method returns the zip file data in form of an Array.
_ex.getFileContentArray("zipFileAddress");
Air Native Extension, Android . URL.