Top "Gzip" questions

GZip/gzip is both the name for a compressed data format and any of several software applications implementing this format.

Fast Concatenation of Multiple GZip Files

I have list of gzip files: file1.gz file2.gz file3.gz Is there a way to concatenate or gzipping …

linux unix gzip compression
How do I use GZipStream with System.IO.MemoryStream?

I am having an issue with this test function where I take an in memory string, compress it, and decompress …

c# .net-4.0 c#-4.0 gzip
zlib.error: Error -3 while decompressing: incorrect header check

I have a gzip file and I am trying to read it via Python as below: import zlib do = zlib.…

python gzip zlib
How to 'minify' Javascript code

JQuery has two versions for download, one is Production (19KB, Minified and Gzipped), and the other is Development (120KB, Uncompressed …

javascript gzip
gzip a file in Python

I want to gzip a file in Python. I am trying to use the subprocss.check_call(), but it keeps …

python gzip subprocess
How can I recover files from a corrupted .tar.gz archive?

I have a large number of files in a .tar.gz archive. Checking the file type with the command file …

gzip archive corrupt recover
How to archive and extract a .tar.gz file

A simple question. On x86 Solaris 10, I tried the following to compress a folder(Data) of files. tar -cvf /path/…

gzip tar solaris-10
How do I gzip compress a string in Python?

How do I gzip compress a string in Python? gzip.GzipFile exists, but that's for file objects - what about …

python compression gzip
What's a good tar utility for Windows?

I use Cygwin regularly, but I have a need these days to extract tar.gz and tar.bz2 files on …

windows gzip tar
GZIPInputStream to String

I am attempting to convert the gzipped body of a HTTP response to plaintext. I've taken the byte array of …

java http gzip gzipinputstream