1
vote
3answers
110 views

Crash safe on-the-fly compression with GZipStream

I'm compressing a log file as data is written to it, something like: using (var fs = new FileStream("Test.gz", FileMode.Create, FileAccess.Write, FileShare.None)) { using (var compress = new ...
1
vote
3answers
95 views

Concatenate gzipped byte arrays in C#

I have gzipped data which is stored in DB. Is there a way to concatenate say 50 separate gzipped data into one gzipped output which can be uncompressed? The result should be same as decompressing that ...
0
votes
0answers
93 views

gzipstream compression then moving compressedfile and deleting original

I am trying to compress a folder with thousands of files and do some cleanup on the folder. The code I have works fine in compressing each file but I would like to delete the original file and then ...
0
votes
1answer
39 views

Is it practical to concatenate GZipStreams?

I conceived this idea to merge an arbitrary number of small text file into 1 single zip file with GZipStream class. I spent several nights to make it work, but the outcome is that the final zip file ...
0
votes
1answer
384 views

using gZipStream with one or two memory streams makes a big difference

I am definitely missing something very obvious but can anyone explain why there is a lot better compression rate in second case?! Case 1: very low compression and sometimes even growth in size. ...
2
votes
2answers
710 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
198 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 ...
0
votes
1answer
167 views

Gzipstream over tcp not decompressing

I am trying to send serialized,compressed data over a tcp connection using protobuf-net and GzipStream The deserializing or reading from the zipstream just blocks and does not complete. To test it I ...
1
vote
1answer
1k views

C# networkstream compression - Sharpziplib, DotNetZip, gzipstream all give errors on my stream

I have a pair of C# client-server programs that communicate using a networkstream. Everything works fine as it is without compression. Now I'd like to get the bandwidth-usage down, so I want to use a ...
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 ...
1
vote
0answers
181 views

Can I better compress multiple SQLite3 DB's individually or altogether?

I am working on a program in C# that deals with multiple database files at once to create a sort of cache that a user can choose later to compress and archive. I am using SQLite3 for these databases. ...
1
vote
1answer
347 views

Why is my GZipStream not writeable?

I have some GZ compressed resources in my program and I need to be able to write them out to temporary files for use. I wrote the following function to write the files out and return true on success ...
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
502 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
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 ...
0
votes
1answer
407 views

XmlSerialize directly to GZipStream throws magic number exception on Decompression

I am trying to Serialize an object to XML however my object is a generic list containing many records and causes the serializer to consume lots of memory. So I tried to serialize directly to a ...
3
votes
3answers
505 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 ...
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 ...
0
votes
2answers
366 views

Is there a way to know if the byte[] has been compressed by gzipstream?

Is there a way to know if the byte[] has been compressed (or not) by GzipStream .net class? EDIT: Just want to know if the byte[] array has been compressed (since I will always be using GzipStream ...
-4
votes
1answer
1k views

c# gzipstream decompression is more like depression

final working code is here.... public static byte[] ToGZip( this string source ) { using( var stream = new MemoryStream( ) ) { using( var compressor = new ...
3
votes
1answer
574 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? ...
1
vote
1answer
642 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 ...
0
votes
2answers
302 views

how to both Compress and Minify content together?

i know we can compress response by declaring Response.Filter as GZip or Delfalte streams, but how i can perform both compression and minification together? declaring new class that inherits Stream, ...
1
vote
1answer
241 views

Why is my programmatic compression dropping the file extension?

I am using C# to programatically compress an xml file. Compression works fine, but when I gunzip the file from the command line, the extension has been dropped. Why would this be? The destination ...
0
votes
3answers
142 views

Loading specific section of a compressed file stream

We have a simple binary file format for caching data in our application (C# .NET Windows App). The format is basically a short that indicates the object type followed by a guid (string) for the ...
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 = ...
1
vote
1answer
746 views

Do an HTTP Post in .NET (Vb) with compressed data using deflatestream

The data that I am posting from a VB.Net client is large and I want to compress. I want to do a "POST" and the apache server supports mod_deflate. I am trying to integrate DeflateStream into my post ...
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
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); ...
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 ...
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 ...