Tagged Questions
1
vote
1answer
46 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 ...
1
vote
3answers
133 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 ...
0
votes
1answer
173 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 ...
4
votes
1answer
867 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);
...
3
votes
3answers
989 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 ...
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 ...
1
vote
0answers
554 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 ...