GZipStream is a .NET 2.0+ class for compression and decompression using gzip format.
1
vote
1answer
39 views
Zip stream implementation with C in embedded devices
I have to embed a large text file in the limited space of internal memory of a MCU. This MCU will use the content of the text file for some purposes later.
The memory limitation dos not allow me to ...
0
votes
2answers
82 views
compressing pdf file makes it bigger
I compress the uploaded .pdf files and save them to server's file system. Everything works well, but the file gets bigger, from 30kb to 48kb. What could I be doing wrong? Here's the code part I ...
1
vote
0answers
28 views
How to Gzip Decompress only one column in JSON response using web browser
Is there a way to decompress only one column in JSON file (one column is GZIP compressed on server not entire JSON file/response) using web browser and not some JavaScript library ?
1
vote
3answers
103 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
94 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
2answers
95 views
How to read from file containing multiple GzipStreams
I've got a file created with code which looks like this:
using (var fs=File.OpenWrite("tmp"))
{
using (GZipStream gs=new GZipStream(fs,CompressionMode.Compress,true))
...
0
votes
1answer
55 views
Append text to existing Gzip file
I'm working on a log program, which would dump data into gzip archive.
The first entry would look like this:
using (var fs = File.OpenWrite(logFile))
{
using (var gs = new GZipStream(fs, ...
0
votes
0answers
91 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
220 views
decompress a .gz file using GZipStream
I have several .gz files, and I want to decompress them one by one.
I have writen a simple code using GzipStream in C#, but got failed. I wonder a correct and useful method to achieve what I want. ...
1
vote
1answer
268 views
alternative for GZIPSTREAM in WP8
I'm working on a WP8 application that uses a Webservice that is shared with a WP6 application
This webservice uses GZipStream to compress the communicated answers.
Now it seems that WP8 doesn't ...
0
votes
2answers
172 views
How to pipe one readable stream into two writable streams at once in Node.js?
The goal is to:
Create a file read stream.
Pipe it to gzip (zlib.createGzip())
Then pipe the read stream of zlib output to:
1) HTTP response object
2) and writable file stream to save the gzipped ...
3
votes
1answer
94 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 ...
0
votes
0answers
193 views
WebClient GZipStream Decompress Response stream.Read length 0
I'm completely stumped as to how to decompress a gzip response. Here's the code I am using:
using (WebClient wc = new WebClient())
{
wc.Headers["Accept"] = ...
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
190 views
Gzip is messing AjaxControlToolKit
There is a form which contain a tabcontainer and watermark control from ajaxcontroltoolkit. It's
Giving java error: Sys.Extended is undefined when using the following gzip procedure. The following ...
1
vote
3answers
360 views
System.OutofMemoryException throw while doing GZipStream Compression
I am working in win forms. Getting errors while doing following operation.
It shows me System.OutOfMemoryException error when i try to run the operation around 2-3 times continuously. Seems .NET is ...
0
votes
1answer
366 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.
...
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 ...
2
votes
2answers
695 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 ...
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 ...
0
votes
1answer
163 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 ...
2
votes
1answer
239 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 ...
1
vote
1answer
378 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
158 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 = ...
0
votes
2answers
233 views
Why does one method of string compression return an empty string but another one doesn't?
I'm using GZipStream to compress a string, and I've modified two different examples to see what works. The first code snippet, which is a heavily modified version of the example in the documentation, ...
0
votes
2answers
125 views
What should I use for zipping instead of GZipStream in Windows Mobile?
I am developing an application for Windows Mobile 6 in Microsoft Visual Studio 2005. I have to unzip a text received by web service. But when I use GZipStream I get the following error:
Error 1 ...
2
votes
1answer
787 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. ...
0
votes
1answer
185 views
The stream size in GZip footer does not match the real stream size
I'm getting an IO exception "The stream size in GZip footer does not match the real stream size" when decompressing from GzipStream. This error is occurring 100% of the time on multiple files so I ...
1
vote
0answers
225 views
boost: Uncompress http response using gzip failed
I'm trying to uncompress http body response using boost gzip filters. I'm using the standard code example provided everywhere:
std::string source = "c:\\install\\data.gz";
std::string destination = ...
0
votes
2answers
297 views
Compress BitArray with GZip in C#
I have BitArray with 100M elements .This is about 12.5M .
I have to compress this array . I use GZipStream of Framework .
public static byte[] Compress(byte[] bytData)
{
try
{
...
4
votes
4answers
853 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[] ...
0
votes
2answers
113 views
Compression stream appears empty
I need to compress a file using GZip by batch of specified size (not in a whole). I can successfuly fill the byte[] buffer, but after copying it into the compression stream, it just leaves the output ...
5
votes
1answer
856 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 ...
2
votes
1answer
937 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 ...
3
votes
0answers
181 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
...
11
votes
5answers
735 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 ...
0
votes
2answers
215 views
GZipStream to gzip string
i´m using GZipStream to gzip string.
Can someone tell me if it is possible to control the level of compression? This is because I realize it is possible to create gzip streams more compressed than ...
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
1answer
124 views
C# .NET GZipStream returning inconsistent file lengths
I've noticed that each time I run the same file through GZipStream the file size differs. When I look at the file through Windows explorer, the size is different, but the Size on disk is always the ...
0
votes
2answers
421 views
UnZip data in C#
I'm new at C#, I writing a simple web service. It takes the zip file and decompress it in file system. In C# code is:
[WebMethod]
public String SetZip(string device_id, string file)
{
if ...
1
vote
0answers
234 views
Why does HttpWebResponse try to decompress the stream using GZip when Content-Encoding is empty?
I've looked at a lot of Q&As around this subject and got to the point where I use the following code in order to get the bytes from a given URI:
var request = ...
1
vote
1answer
767 views
Zlib decompression throws header error - Ruby
I need help on decompressing chunk data from a stream api. I am connecting to Gnip stream api which returns json output using gzip compression. When I try to decompress the output data, it throws me ...
1
vote
0answers
180 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
343 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 ...
1
vote
2answers
168 views
Non-static error when trying to load filestream to RichTextBox from Gzip decompress procedure
Basically all I want is to load a Gziped file into a rich text box. I found some code on the MS .NET site for decompressing the file. Now I want to point that stream to a rich text box, but I keep ...
2
votes
2answers
998 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 ...
1
vote
0answers
207 views
GZipStream over .NET webservice causes invalid character issue
I'm working on a complex .NET client server architecture customization and I absolutely have no control over request/reply sent or received except that I can add my stuff to the request/reply objects.
...
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 ...

