GZipStream is a .NET 2.0+ class for compression and decompression using gzip format.

learn more… | top users | synonyms

16
votes
4answers
1k views

Why does my C# gzip produce a larger file than Fiddler or PHP?

If I GZip this text: Hello World through C# using this code: Stream stream = new MemoryStream(Encoding.Default.GetBytes("Hello World")); var compressedMemoryStream = new MemoryStream(); using ...
14
votes
4answers
4k views

Sending gzipped data in WebRequest?

I have a large amount of data (~100k) that my C# app is sending to my Apache server with mod_gzip installed. I'm attempting to gzip the data first using System.IO.Compression.GZipStream. PHP receives ...
12
votes
5answers
791 views

GZipStream machine dependence

I'm running into some strange machine/OS dependent GZipStream behavior in .NET 4.0. This is the relevant code: public static string Compress(string input) { using(var ms = new ...
12
votes
7answers
3k views

How can I verify that web pages are being gzipped?

I plan to configure weblogic's gzip servlet filter (using weblogicx-gzip.jar) to gzip my web pages. How can I verify that the pages are being sent to the client gzipped?
7
votes
4answers
10k views

.NET GZipStream compress and decompress problem

What is wrong with this code below. I always get FALSE, meaning after compression, decompressed data does not match original value. public static bool Test() { string sample = ...
7
votes
1answer
2k views

GZipStream compression problem ( Lost Byte )

I've got some strange problem with GZip Serializer. Trying serializing object with data in it. Following code give results(at POINT1 in debug): ms.Length = 100028 and ...
7
votes
5answers
2k views

GZipStream and DeflateStream produce bigger files

I'm trying to use deflate/gzip streams in C# but it appears that the files after compression are bigger than before. For example, I compress a docx file of 900ko, but it produce a 1.4Mo one ! And it ...
6
votes
3answers
1k views

GZipStream not reading the whole file

I have some code that downloads gzipped files, and decompresses them. The problem is, I can't get it to decompress the whole file, it only reads the first 4096 bytes and then about 500 more. Byte[] ...
5
votes
1answer
8k views

GZipStream and decompression

I have code that should do the compression: FileStream fs = new FileStream("g:\\gj.txt", FileMode.Open); FileStream fd = new FileStream("g:\\gj.zip", FileMode.Create); ...
5
votes
1answer
914 views

IIS Compression with in code GZipping?

I am adding in gzipping to all my static content, and html outputs from my .net 4 site. I also have compression enabled in IIS 7.5 (both static and dynamic), and what I am finding is that enabling ...
4
votes
3answers
2k views

Writing to the compression stream is not supported. Using System.IO.GZipStream

I am trying to decompress a (.gz) file using the GZipStream class that is included in the .NET framework. I am using the MSDN documentation and I keep getting this exception: "Writing to the ...
4
votes
5answers
12k views

How do I read / write gzipped files?

How do I read / write gzipped files in C++? The iostream wrapper classes here look good, and here is a simple usage example: gz::igzstream in(filename); std::string line; while(std::getline(in, ...
4
votes
5answers
1k views

Compressing and Decompressing Folders in C#

I want to compress and decompress a folder using C#. The problem with GZipStream is that it takes filenames and hence I need to write a recursive logic. Can I somehow do it like, give source folder ...
4
votes
2answers
1k views

GZipStream is cutting off last part of XML

I have created an extension method called AddGZip which looks like the following: public static void AddGZip(this HttpResponse response) { response.Filter = new GZipStream(response.Filter, ...
4
votes
3answers
2k views

How to compress multiple files in a GZip file with the GZipStream class?

I am simply looking for a way to compress multiple files in a GZip file with the GZipStream class. Anybody has an idea how to do that?
4
votes
1answer
864 views

How to decompress GZip in Stream (C#)?

This code receives the GZip-encoded string. How can I decode it? Stream stream = ret.GetResponseStream(); System.IO.StreamReader reader = new System.IO.StreamReader(stream, Encoding.Default); ...
4
votes
3answers
1k views

How to serialize object + compress it and then decompress + deserialize without third-party library?

I have a big object in memory which I want to save as a blob into database. I want to compress it before saving because database server is usually not local. This is what I have at the moment: using ...
4
votes
4answers
950 views

GZIP decompression C# OutOfMemory

I have many large gzip files (approximately 10MB - 200MB) that I downloaded from ftp to be decompressed. So I tried to google and find some solution for gzip decompression. static byte[] ...
3
votes
2answers
2k views

GZIP Java vs .NET

Using the following Java code to compress/decompress bytes[] to/from GZIP. First text bytes to gzip bytes: public static byte[] fromByteToGByte(byte[] bytes) { ByteArrayOutputStream baos = ...
3
votes
3answers
988 views

Decompress a Stream

I'm trying to decompress a stream, using a GZipStream and BinaryStream, but I'm failing. Can you help me? public static LicenseOwnerRoot GetLicenseFromStream(Stream stream) { using ...
3
votes
3answers
511 views

Is there a problem with IO.Compression?

I've just started compressing file in VB.Net, using the following code. Since I'm targeting Fx 2.0, I can't use the Stream.CopyTo method. My code, however, gives extremely poor results compared to ...
3
votes
2answers
3k views

Android: Gzip/Http supported by default?

I am using the code shown below to get Data from our server where Gzip is turned on. Does my Code already support Gzip (maybe this is already done by android and not by my java program) or do I have ...
3
votes
3answers
832 views

zipping with c#

i am trying to use GZipStream to create a gz file using c#. my problem is that i have a list that contains strings. and i need to create a password protected zip file, and put in it a text file ...
3
votes
2answers
1k views

GZIP output stream

I am trying to GZIP some XML that gets streamed over HTTP (not a web service) if (ZipOutput) { output = new GZipStream(Context.Response.OutputStream, CompressionMode.Compress); ...
3
votes
2answers
4k views

C# to Java: Base64String, MemoryStream, GZipStream

I have a Base64 string that's been gzipped in .NET and I would like to convert it back into a string in Java. I'm looking for some Java equivalents to the C# syntax, particularly: ...
3
votes
1answer
1k views

GZipStream doesn't detect corrupt data (even CRC32 passes)?

I'm using GZipStream to compress / decompress data. I chose this over DeflateStream since the documentation states that GZipStream also adds a CRC to detect corrupt data, which is another feature I ...
3
votes
1answer
2k views

Using .NET GZipStream Class with Mono

I'm trying to build an example from GZipStream Class. With the command gmcs gzip.cs, I got error messages. gzip.cs is the same source from the msdn. It seems that I need to add reference when ...
3
votes
1answer
596 views

Can GZip compression (via .net) increase file size?

I keep track of the original size of the files that I'm compressing using .Net's GZipStream class, and it seems like the file that I thought I was compressing has increased in size. Is that possible? ...
3
votes
1answer
101 views

RavenDB client onlinux connecting to windows server using mono http

I've just tried connecting to my RavenDB windows instance from linux using mono. I'm getting a bizarre error with it, that seems to be mono related rather than raven related. Here is my recreate ...
3
votes
3answers
2k views

Computing progress (bar) using GZipStream

I'm reading a .gz file from some slow source (like FTP Server) and am processing the received data right away. Looks something like this: FtpWebResponse response = ftpclientRequest.GetResponse() as ...
3
votes
2answers
428 views

Reading compressed file and writing to new file will not allow decompression

I have a test program that demonstrates the end result that I am hoping for (even though in this test program the steps may seem unnecessary). The program compresses data to a file using GZipStream. ...
3
votes
0answers
190 views

Ksoap exception in j2me

I am create one J2ME application which call to .NET WCF web service and me used ksoap. I am using netbeans IDE. But when I run that application then gives run time exception is ...
3
votes
1answer
391 views

'System.IO.Compression.GZipStream' cannot be serialized. Consider marking it with the DataContractAttribute attribute

I am trying to use WCF service to upload GZip files. Im trying to compress files using Gzip and then passing it through to WCF service to be uploaded to server. Every time I'm running the code I get ...
2
votes
3answers
2k views

C# HttpListener Response + GZipStream

I use HttpListener for my own http server (I do not use IIS). I want to compress my OutputStream by GZip compression: byte[] refBuffer = Encoding.UTF8.GetBytes(...some data source...); var ...
2
votes
2answers
1k views

GZipStream works but extension is lost

I am using following code to zip a file and it works fine but when I decompress with WinRar I get the original file name without the extension, any clue why if filename is myReport.xls when I ...
2
votes
2answers
1k views

GZipStream effectivness

I am trying to save big UInt16 array into a file. positionCnt is about 50000, stationCnt is about 2500. Saved directly, without GZipStream, the file is about 250MB which can be compressed by external ...
2
votes
2answers
1k views

GZipStream.Write Method

I have been reading for a short while about GZipStream and its Write method. What I am attempting to do is convert the compressed data from the stream and put it in a byte array. I will leave you with ...
2
votes
3answers
3k views

How to Decompress nested GZip (TGZ) files in C#

I am receiving a TGZ file that will contain one plain text file along with possibly one or more nested TGZ files. I have figured out how to decompress the main TGZ file and read the plain text file ...
2
votes
1answer
258 views

GZipStream only decompresses first line

My GZipStream will only decompress the first line of the file. Extracting the contents via 7-zip works as expected and gives me the entire file contents. It also extracts as expected using gunzip on ...
2
votes
1answer
1k views

C# GZipStream - Zipping MemoryStreams

I have 5 MemoryStreams. I want to create a new zip (Which will also be a Stream) while each of the 5 MemoryStreams I have, will respresnt a file. I do have this code about how to Zip a string/1 ...
2
votes
2answers
773 views

.NET GZipStream decompress producing empty stream

I'm trying to serialize and compress a WPF FlowDocument, and then do the reverse - decompress the byte array and deserialize to recreate the FlowDocument - using the .NET GZipStream class. I'm ...
2
votes
1answer
119 views

GZip decompression stops at arbitrary point

I'm using the .Net GZipStream class to compress and decompress files. After I do the decompression, the data seems fine, but then turns to nothing but zeros after a certain, seemingly arbitrary, ...
2
votes
1answer
648 views

GZipStream: why do we convert to base 64 after compression?

I was just looking at a code sample for compressing a string. I find that using the GZipStream class suffices. But I don't understand why we have to convert it to base 64 string as shown in the ...
2
votes
1answer
207 views

Error with decompression/compression error

I have the error while decompressing "The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or a non-white space character among the ...
2
votes
1answer
2k views

Decompress byte array to string via BinaryReader yields empty string

I am trying to decompress a byte array and get it into a string using a binary reader. When the following code executes, the inStream position changes from 0 to the length of the array, but str is ...
2
votes
2answers
524 views

What is the difference between zlib's gzip compression and the compression used by .NET's GZipStream?

Having an odd problem - one of my app suites has to read/write gzip-compressed files that are used on both Windows and Linux, and I am finding that the files I generate using zlib on Linux are 2-3 ...
2
votes
3answers
988 views

Gzip a directory that has subdirectories using GZipStream class with C#?

This MSDN site has an example to gzip a file. Then, how can I gzip a whole directory with sub directories in it?
2
votes
3answers
1k views

Properly Compressing a CSV utilizing GZIP Stream and Memory Stream

I am compressing a CSV file utilizing GZIPStream and MemoryStream, and noticing something weird with the result file. It seems like the CSV is not properly recognized. This shows when the file is ...
2
votes
1answer
866 views

GZipStream on large data

I am attempting to compress a large amount of data, sometimes in the region of 100GB, when i run the routine i have written it appears the file comes out exactly the same size as the previous size. ...
2
votes
1answer
348 views

Thread locking when flushing jsp file

Under heavy load I see lot of threads getting locked when GZipping and decompressing the JSP file. The thread dump looks like below. Seems to be coming from "header.jsp" which is of size 14Kb. ...

1 2 3