C # Memory Compressed ZIP file

Source: Internet
Author: User

In C # We use more files to compress third-party DLLs that are Ionic.Utils.Zip.dll. However, this DLL only supports compression of existing files, not memory compression, and if memory compression is required, then there is a third-party DLL ICSharpCode.SharpZipLib.dll.

Here's an example sticking out:

usingICSharpCode.SharpZipLib.BZip2;usingICSharpCode.SharpZipLib.Zip;usingSystem;usingSystem.Collections.Generic;usingSystem.IO;usingSystem.Linq;usingSystem.Text;namespaceconsoleapplication1{classProgram {Static voidMain (string[] args) {            vardata = Encoding.Default.GetBytes ("Hello World"); using(System.IO.FileStream ZipFile = System.IO.File.Create ("D:\\abc.zip"))            {                using(Zipoutputstream ZipStream =NewZipoutputstream (ZipFile)) {                    //file 1ZipEntry Entry1 =NewZipEntry ("address. txt");                    Zipstream.putnextentry (Entry1); Zipstream.write (data,0, data.                    Length); //File 2ZipEntry Entry2 =NewZipEntry ("name \ \ address 2.txt");//name indicates folderzipstream.putnextentry (Entry2); Zipstream.write (data,0, data.                Length);            } zipfile.close (); } Console.WriteLine ("Success");        Console.ReadLine (); }    }}

The compressed directory structure is as follows:

C # Memory Compressed ZIP file

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.