Google say what is this zip archive, but I cannot its extract by ICSharpCode.SharpZipLib and Zlib.net libraries.
Asked
Active
Viewed 2,059 times
0
-
How did you ask google to get that answer? – Mark Adler Feb 16 '14 at 15:26
-
That is a zlib header. What did you try with zlib that resulted in "I cannot its extract"? – Mark Adler Feb 16 '14 at 15:27
-
var t = new ICSharpCode.SharpZipLib.Zip.ZipInputStream(input); and ZOutputStream outZStream = new ZOutputStream(output, zlibConst.Z_DEFAULT_COMPRESSION); – christo Feb 16 '14 at 15:36
-
That's not zlib, that's SharpZipLib. What did you try with zlib that resulted in "I cannot its extract"? – Mark Adler Feb 16 '14 at 16:05
-
Second sanmple is Zlib (ZOutputStream outZStream = new ZOutputStream(output, zlibConst.Z_DEFAULT_COMPRESSION)) – christo Feb 16 '14 at 17:02
-
That will compress. Get rid of the `zlibConst`... – Mark Adler Feb 16 '14 at 18:17
-
1Also consider using [DotNetZip](http://dotnetzip.codeplex.com/) instead, which has a better interface to zlib. – Mark Adler Feb 16 '14 at 18:18
-
Bellissimo)) DotNetZip for Zlib worked) Very thanks for you!) – christo Feb 16 '14 at 18:49
2 Answers
3
That is a zlib (RFC 1950) header. You can use the zlib library to decompress it.

Community
- 1
- 1

Mark Adler
- 101,978
- 13
- 118
- 158
2
I found offzip.exe at http://aluigi.altervista.org/mytoolz.htm to be super helpful to expand RFC 1950s.

infoone
- 21
- 1