1
vote
1answer
245 views

Decompress Gzip JSON response

I'm getting GZIP type compressed response from web-service. Can anyone please help me how to decompress or decode the response. Any help regarding this will be really helpful Thanks
1
vote
2answers
137 views

Error with zip_open from libzip

I am learning C++, and I decided to make a little program that zip/unzip files to train me. I downloaded libzip and zlib and linked them to my compiler (MinGW with Code::Blocks on Windows). So I tried ...
0
votes
1answer
449 views

unzip NSData using objective zip

I have just recently found Objective Zip Ihave been reading through the instructions to get it set up in my project. However I am not really sure how to use it to decompress some NSData I have that I ...
0
votes
0answers
101 views

PHP ZipArchive producing invalid archives, “Unexpected end of ZLIB input stream”

I'm using ZipArchive in PHP to create an archive. It's been working fine for the best part of a year, but suddenly today with no apparent trigger it stopped working correctly. The archive appears to ...
0
votes
1answer
71 views

Unzip error in my code

I am designing a zip-unzip utility. I am using the zlib library. Inflate and deflate work perfectly without any errors. Unzip works alright for text and .c files but when I use it to compress .mp3 or ...
0
votes
2answers
1k views

Unzip a zip file using zlib

I have an archive.zip which contains two crypted ".txt" files. I would like to decompress the archive in order to retrieve those 2 files. Here's what i've down till now : FILE *FileIn = ...
3
votes
2answers
9k views

Simple way to unzip a .zip file using zlib

Is there a simple example of how to unzip a .zip file and extract the files to a directory? I am currently using zlib, and while I understand that zlib does not directly deal with zip files, there ...
9
votes
4answers
3k views

How to download and unzip a zip file in memory in NodeJs?

I want to download a zip file from the internet and unzip it in memory without saving to a temporary file. How can I do this? Here is what I tried: var url = ...
0
votes
2answers
1k views

How do I inflate and read zip files using zlib?

How do you unzip a file, or read the contents of a zip file in order to select what to extract? The .pencast is zip compressed, so I can use the following in bash: unzip -j *.pencast "*.aac" But ...
1
vote
3answers
2k views

Unzip files with node.js on Windows

What options are there to handle unzipping .zip files from within a Node.js script on Windows (XP)? I'm working with the latest (at present) node.js v0.5.8 Windows node.exe. Suggestions welcome. ...
1
vote
3answers
2k views

Unzipping a directory in C++

I am creating a C++ program that will read a .docx's plain text. My plan of attack is to rename the .docx as a .zip and then unzip. I then will rename the .xml file containing the text of the ...