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

learn more… | top users | synonyms

13
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 ...
4
votes
5answers
11k 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, ...
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 ...
2
votes
4answers
3k views

GZipStream decompression performance is poor

I have a .NET 2.0 WinForms app that connects to a backend WAS server. I am using GZipStream to decode data coming back from a HttpWebRequest call made to the server. The data returned is compressed ...
6
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
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 = ...
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, ...
11
votes
5answers
733 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 ...
4
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); ...
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: ...
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 ...
1
vote
1answer
639 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 ...
7
votes
1answer
1k 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 ...
4
votes
4answers
846 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
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
3answers
504 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 ...
1
vote
1answer
371 views

Decompressing using GZipStream returns only the first line

I’ve been working on a function parsing 3rd party fms logs. The logs are in Gzip, so I use a decompressing function that works for any other Gzip files we use. When decompressing these files I only ...
0
votes
2answers
156 views

Compressing and decompressing a string yields only the first letter of the original string?

I'm compressing a string with Gzip using this code: public static String Compress(String decompressed) { byte[] data = Encoding.Unicode.GetBytes(decompressed); using (var input = ...