Data Compression in .NET

S

Stefan L

Hi Everybody,

does anyone know if there is a good compression library available for
the .NET-Framework?

I want to compress a byte-Array (chunk from a file) for transmission
over the internet to a client.
On the client side I want to decompress the data and use it.

Any recommendations for this sort of problem?

TIA,
Stefan
 
A

AlexL [Xceed]

does anyone know if there is a good compression library available for
the .NET-Framework?

I want to compress a byte-Array (chunk from a file) for transmission
over the internet to a client.
On the client side I want to decompress the data and use it.

We have a professional library which will allow you to do that, and
much more, very easily.

For your case, our library offers a CompressedStream object that works
as other .NET streams do, interchangeably. In some cases you can
obtain a noticeably higher level of compression than standard deflate
/ zip / zlib compression algorithms if you use our library's Deflate64
algorithm.

http://www.xceedsoft.com/products/zipnet

Hi Everybody,

does anyone know if there is a good compression library available for
the .NET-Framework?

I want to compress a byte-Array (chunk from a file) for transmission
over the internet to a client.
On the client side I want to decompress the data and use it.

Any recommendations for this sort of problem?

TIA,
Stefan

--
Alex Leblanc
Xceed Software Inc.
http://www.xceedsoft.com

Check out our advanced .NET grid and SmartUI controls

Email: (e-mail address removed) (remove the first 'x')
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top