Tagged Questions
GZipStream is a class included in .NET 2.0+ that leverages the gzip data format for lossless file compression and decompression, while including a redundancy check value for detecting data corruption. Compressed GZipStream object written to a .gz file can be decompressed using WinZip, 7zip, etc, but GZipStream does NOT provide functionality for adding or extracting files from .zip archives.
8
votes
4answers
2k 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 ...
6
votes
5answers
839 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
5answers
1k 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?
5
votes
3answers
682 views
GZIPInputStream implementation for J2ME
Are there any GZIPInputStream implementation for J2ME available. I would prefer an Apache Style License
4
votes
1answer
171 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
1answer
355 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
390 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
3answers
440 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[] ...
4
votes
3answers
793 views
Compressing with Java Decompressing with PHP
I have a situation where a servlet is providing compressed data to a PHP script. I compress the data on the Java side no problem, but PHP seems unable to decompress.
Here is the relevent code ...
4
votes
4answers
8k views
GZIPInputStream reading line by line
I have a file in .gz format. The java class for reading this file is GZIPInputStream.
However, this class doesn't extend the BufferedReader class of java. As a result, I am not able to read the file ...
3
votes
2answers
358 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
124 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
1answer
624 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
2answers
568 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, ...
3
votes
3answers
407 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
4answers
4k 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 = ...
3
votes
5answers
5k 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, ...
2
votes
2answers
143 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
1answer
147 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
193 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 ...
2
votes
2answers
201 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
311 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
1answer
588 views
GzipStream (.net 4.0) 4GB problem
I am having trouble programmatically unzipping a 3GB (7GB uncompressed) gzip file using the built in .net 4.0 Gzip and Deflate Classes.
My understanding is that they should both support files over ...
2
votes
2answers
168 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 ...
2
votes
2answers
517 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?
2
votes
1answer
82 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
232 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?
...
2
votes
1answer
383 views
I'm attempting to force gzip compression on a page using GZipStream but the browser says I'm using unsupported compression
I'm tring to implement what Steve Souders discusses http://www.stevesouders.com/blog/2010/07/12/velocity-forcing-gzip-compression/ about forcing gzip compression
I've got a module that's running ...
2
votes
3answers
1k 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
1k 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
3answers
1k 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 ...
2
votes
2answers
3k 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
3answers
1k 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 ...
2
votes
3answers
1k 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 ...
1
vote
0answers
18 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
56 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
31 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 ...
1
vote
2answers
82 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
2answers
267 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 ...
1
vote
3answers
206 views
Send/Receive GZip compressed MSMQ messages in C#
I am trying to send large objects (>30MB) to a MSMQ queue. Due to the large amount of data we are are tring to send the idea was to GZip the objects prior to sending them, then unzipping them on the ...
1
vote
1answer
184 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 ...
1
vote
2answers
122 views
Is GZIPOutputStream known to loose data during compression?
I have a very strange issue with GZIPOutputStream when compressing an array of doubles. At the 57th element, I get a small discrepancy when I reload the data:
57 > 3.003727492141554E7 ...
1
vote
2answers
183 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 ...
1
vote
3answers
94 views
GZip Decompression Gives Blank File
Given the code below, why is the decompression not working? "NewFile2.txt" should have the original, decompressed text, but the file is just blank.
ioTests.CompressFile(@"c:\newfile.txt", ...
1
vote
1answer
57 views
1
vote
1answer
274 views
Problem with decompress, GZipStream
I have problem with decomress gzip:
string fileData = string.Empty;
// byte[] starts with 31 and 139
var gzBuffer = entity.Data.Skip(pos).ToArray();
using (GZipStream stream = new GZipStream(new ...
1
vote
2answers
499 views
How to create a zip file using encoded string in C#
I'm new to C# and using C#.Net 2.0 with Visual Studio 2005.
How can I create a zip file from a string using GZipStream. (I don't want to use any third party libraries and doing this purely using ...
1
vote
0answers
257 views
How to achieve minimum size when compressing small amount of data lossless?
I don’t understand the answer to ”Why does gzip/deflate compressing a small file result in many trailing zeroes?”
(Why does gzip/deflate compressing a small file result in many trailing zeroes?)
How ...
1
vote
3answers
648 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 ...
1
vote
2answers
287 views
“Invalid use of response filter” when compressing response from an IHttpHandler
I have an IHttpHandler returning a file. When the response stream is compressed, either automatically using Telerik RadCompression or by explicitly setting a filter using
context.Response.Filter = ...