实例介绍
【实例简介】C#压缩算法.zip
C#压缩算法,包含文档及源代码和测试,主要涉及C#如何压缩提高压缩效率
文件清单
├── 084SharpZipLib.chm
├── build.bat
├── doc
│ ├── Changes.txt
│ ├── COPYING.txt
│ ├── Readme.pdf
│ ├── Readme.rtf
│ ├── Readme.sxw
│ └── specification
│ ├── rfc1950.txt
│ ├── rfc1951.txt
│ ├── rfc1952.txt
│ ├── rfc-deflate.txt
│ ├── rfc-gzip.txt
│ └── rfc-zlib.txt
├── ICSharpCode.SharpZipLib.key
├── ICSharpCode.SharpZLib.cmbx
├── installGAC.bat
├── samples
│ ├── cs
│ │ ├── CreateZipFile
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── CreateZipFile.cmbx
│ │ │ ├── CreateZipFile.prjx
│ │ │ ├── Main.cs
│ │ │ └── readme.txt
│ │ ├── FastZip
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── FastZip.cmbx
│ │ │ ├── FastZip.prjx
│ │ │ └── Main.cs
│ │ ├── minibzip2
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── minibzip2.cmbx
│ │ │ ├── minibzip2.prjx
│ │ │ └── readme.txt
│ │ ├── minigzip
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── minigzip.cmbx
│ │ │ ├── minigzip.prjx
│ │ │ └── readme.txt
│ │ ├── samples.build
│ │ ├── sz
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── sz.cmbx
│ │ │ ├── sz.cs
│ │ │ └── sz.prjx
│ │ ├── tar
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── tar.cmbx
│ │ │ └── tar.prjx
│ │ ├── unzipfile
│ │ │ ├── readme.txt
│ │ │ ├── unzipfile.cmbx
│ │ │ ├── UnZipFile.cs
│ │ │ └── unzipfile.prjx
│ │ ├── viewzipfile
│ │ │ ├── readme.txt
│ │ │ ├── viewzipfile.cmbx
│ │ │ ├── ViewZipFile.cs
│ │ │ └── viewzipfile.prjx
│ │ └── zipfiletest
│ │ ├── readme.txt
│ │ ├── zipfiletest.cmbx
│ │ ├── ZipFileTest.cs
│ │ └── zipfiletest.prjx
│ ├── DIME
│ │ ├── DimeDataSetService
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── DimeDataSetService.csproj
│ │ │ ├── DimeDataSetService.csproj.webinfo
│ │ │ ├── DimeDataSetService.sln
│ │ │ ├── DimeDataSetService.suo
│ │ │ ├── DimeDataSetService.vsdisco
│ │ │ ├── Global.asax
│ │ │ ├── Global.asax.cs
│ │ │ ├── Global.asax.resx
│ │ │ ├── Service1.asmx
│ │ │ ├── Service1.asmx.cs
│ │ │ ├── Service1.asmx.resx
│ │ │ └── Web.config
│ │ ├── DimeDataSetServiceConsumer
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── DimeDataSetServiceConsumer.csproj
│ │ │ ├── DimeDataSetServiceConsumer.csproj.user
│ │ │ ├── DimeDataSetServiceConsumer.sln
│ │ │ ├── DimeDataSetServiceConsumer.suo
│ │ │ ├── Main.cs
│ │ │ ├── Main.resx
│ │ │ └── Web References
│ │ │ └── localhost
│ │ │ ├── Reference.cs
│ │ │ ├── Reference.map
│ │ │ ├── Service1.disco
│ │ │ └── Service1.wsdl
│ │ └── readme.txt
│ ├── HttpCompressionModule
│ │ ├── example
│ │ │ ├── blowery.gif
│ │ │ ├── Default.aspx
│ │ │ ├── DefaultController.cs
│ │ │ ├── Example.csproj
│ │ │ ├── Example.csproj.user
│ │ │ ├── ExistingImage.ashx
│ │ │ ├── Image.ashx
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── Example.dll
│ │ │ │ ├── Example.dll.incr
│ │ │ │ ├── Example.pdb
│ │ │ │ └── Example.projdata
│ │ │ └── web.config
│ │ ├── httpcompressionmodule.pdf
│ │ ├── HttpCompressionModule.sln
│ │ ├── HttpCompressionModule.suo
│ │ ├── license.txt
│ │ ├── readme.txt
│ │ └── src
│ │ ├── AssemblyInfo.cs
│ │ ├── ConfigSectionHandler.cs
│ │ ├── DeflateFilter.cs
│ │ ├── doc
│ │ │ └── HttpCompressionModule.xml
│ │ ├── GZipFilter.cs
│ │ ├── HttpCompressingFilter.cs
│ │ ├── HttpCompressionModule.cs
│ │ ├── HttpCompressionModule.csproj
│ │ ├── HttpCompressionModule.csproj.user
│ │ ├── HttpCompressionModuleSettings.cs
│ │ ├── HttpOutputFilter.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── HttpCompressionModule.dll
│ │ │ ├── HttpCompressionModule.dll.incr
│ │ │ ├── HttpCompressionModule.pdb
│ │ │ └── HttpCompressionModule.projdata
│ │ └── refs
│ │ ├── SharpZipLib.dll
│ │ └── SharpZipLib.xml
│ └── vb
│ ├── CreateZipFile
│ │ ├── AssemblyInfo.vb
│ │ ├── CreateZipFile.cmbx
│ │ ├── CreateZipFile.prjx
│ │ ├── CreateZipFile.sln
│ │ ├── CreateZipFile.suo
│ │ ├── CreateZipFile.vbproj
│ │ ├── CreateZipFile.vbproj.user
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ └── Main.vb
│ ├── minibzip2
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ ├── Main.vb
│ │ ├── minibzip2.cmbx
│ │ ├── minibzip2.prjx
│ │ ├── minibzip2.sln
│ │ ├── minibzip2.suo
│ │ ├── minibzip2.vbproj
│ │ └── minibzip2.vbproj.user
│ ├── samples.build
│ ├── viewzipfile
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ ├── Main.vb
│ │ ├── viewzipfile.cmbx
│ │ ├── viewzipfile.prjx
│ │ ├── viewzipfile.sln
│ │ ├── viewzipfile.suo
│ │ ├── viewzipfile.vbproj
│ │ └── viewzipfile.vbproj.user
│ └── zipfiletest
│ ├── AssemblyInfo.vb
│ ├── MainForm.resources
│ ├── Main.resx
│ ├── Main.vb
│ ├── zipfiletest.cmbx
│ ├── zipfiletest.prjx
│ ├── zipfiletest.sln
│ ├── zipfiletest.suo
│ ├── zipfiletest.vbproj
│ └── zipfiletest.vbproj.user
├── SharpZlib.build
├── src
│ ├── AssemblyInfo.cs
│ ├── BZip2
│ │ ├── BZip2Constants.cs
│ │ ├── BZip2.cs
│ │ ├── BZip2Exception.cs
│ │ ├── BZip2InputStream.cs
│ │ └── BZip2OutputStream.cs
│ ├── Checksums
│ │ ├── Adler32.cs
│ │ ├── CRC32.cs
│ │ ├── IChecksum.cs
│ │ └── StrangeCRC.cs
│ ├── Core
│ │ ├── FileSystemScanner.cs
│ │ ├── INameTransform.cs
│ │ ├── NameFilter.cs
│ │ └── PathFilter.cs
│ ├── Encryption
│ │ └── PkzipClassic.cs
│ ├── GZip
│ │ ├── GZIPConstants.cs
│ │ ├── GZipException.cs
│ │ ├── GzipInputStream.cs
│ │ └── GzipOutputStream.cs
│ ├── ICSharpCode.SharpZLib.prjx
│ ├── Main.cs
│ ├── SharpZipBaseException.cs
│ ├── Tar
│ │ ├── InvalidHeaderException.cs
│ │ ├── TarArchive.cs
│ │ ├── TarBuffer.cs
│ │ ├── TarEntry.cs
│ │ ├── TarException.cs
│ │ ├── TarHeader.cs
│ │ ├── TarInputStream.cs
│ │ └── TarOutputStream.cs
│ └── Zip
│ ├── Compression
│ │ ├── DeflaterConstants.cs
│ │ ├── Deflater.cs
│ │ ├── DeflaterEngine.cs
│ │ ├── DeflaterHuffman.cs
│ │ ├── DeflaterPending.cs
│ │ ├── Inflater.cs
│ │ ├── InflaterDynHeader.cs
│ │ ├── InflaterHuffmanTree.cs
│ │ ├── PendingBuffer.cs
│ │ └── Streams
│ │ ├── DeflaterOutputStream.cs
│ │ ├── InflaterInputStream.cs
│ │ ├── OutputWindow.cs
│ │ └── StreamManipulator.cs
│ ├── FastZip.cs
│ ├── ZipConstants.cs
│ ├── ZipEntry.cs
│ ├── ZipException.cs
│ ├── ZipFile.cs
│ ├── ZipInputStream.cs
│ ├── ZipNameTransform.cs
│ └── ZipOutputStream.cs
├── tests
│ ├── AssemblyInfo.cs
│ ├── Base
│ │ └── InflaterDeflaterTests.cs
│ ├── BZip2
│ │ └── Bzip2Tests.cs
│ ├── GZip
│ │ └── GZipTests.cs
│ ├── SharpZipLibTests.cmbx
│ ├── SharpZipLibTests.prjx
│ ├── Tar
│ │ └── TarTests.cs
│ └── Zip
│ └── ZipTests.cs
└── uninstallGAC.bat
48 directories, 218 files
C#压缩算法,包含文档及源代码和测试,主要涉及C#如何压缩提高压缩效率
【实例截图】
文件清单
├── 084SharpZipLib.chm
├── build.bat
├── doc
│ ├── Changes.txt
│ ├── COPYING.txt
│ ├── Readme.pdf
│ ├── Readme.rtf
│ ├── Readme.sxw
│ └── specification
│ ├── rfc1950.txt
│ ├── rfc1951.txt
│ ├── rfc1952.txt
│ ├── rfc-deflate.txt
│ ├── rfc-gzip.txt
│ └── rfc-zlib.txt
├── ICSharpCode.SharpZipLib.key
├── ICSharpCode.SharpZLib.cmbx
├── installGAC.bat
├── samples
│ ├── cs
│ │ ├── CreateZipFile
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── CreateZipFile.cmbx
│ │ │ ├── CreateZipFile.prjx
│ │ │ ├── Main.cs
│ │ │ └── readme.txt
│ │ ├── FastZip
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── FastZip.cmbx
│ │ │ ├── FastZip.prjx
│ │ │ └── Main.cs
│ │ ├── minibzip2
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── minibzip2.cmbx
│ │ │ ├── minibzip2.prjx
│ │ │ └── readme.txt
│ │ ├── minigzip
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── minigzip.cmbx
│ │ │ ├── minigzip.prjx
│ │ │ └── readme.txt
│ │ ├── samples.build
│ │ ├── sz
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── sz.cmbx
│ │ │ ├── sz.cs
│ │ │ └── sz.prjx
│ │ ├── tar
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── tar.cmbx
│ │ │ └── tar.prjx
│ │ ├── unzipfile
│ │ │ ├── readme.txt
│ │ │ ├── unzipfile.cmbx
│ │ │ ├── UnZipFile.cs
│ │ │ └── unzipfile.prjx
│ │ ├── viewzipfile
│ │ │ ├── readme.txt
│ │ │ ├── viewzipfile.cmbx
│ │ │ ├── ViewZipFile.cs
│ │ │ └── viewzipfile.prjx
│ │ └── zipfiletest
│ │ ├── readme.txt
│ │ ├── zipfiletest.cmbx
│ │ ├── ZipFileTest.cs
│ │ └── zipfiletest.prjx
│ ├── DIME
│ │ ├── DimeDataSetService
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── DimeDataSetService.csproj
│ │ │ ├── DimeDataSetService.csproj.webinfo
│ │ │ ├── DimeDataSetService.sln
│ │ │ ├── DimeDataSetService.suo
│ │ │ ├── DimeDataSetService.vsdisco
│ │ │ ├── Global.asax
│ │ │ ├── Global.asax.cs
│ │ │ ├── Global.asax.resx
│ │ │ ├── Service1.asmx
│ │ │ ├── Service1.asmx.cs
│ │ │ ├── Service1.asmx.resx
│ │ │ └── Web.config
│ │ ├── DimeDataSetServiceConsumer
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── DimeDataSetServiceConsumer.csproj
│ │ │ ├── DimeDataSetServiceConsumer.csproj.user
│ │ │ ├── DimeDataSetServiceConsumer.sln
│ │ │ ├── DimeDataSetServiceConsumer.suo
│ │ │ ├── Main.cs
│ │ │ ├── Main.resx
│ │ │ └── Web References
│ │ │ └── localhost
│ │ │ ├── Reference.cs
│ │ │ ├── Reference.map
│ │ │ ├── Service1.disco
│ │ │ └── Service1.wsdl
│ │ └── readme.txt
│ ├── HttpCompressionModule
│ │ ├── example
│ │ │ ├── blowery.gif
│ │ │ ├── Default.aspx
│ │ │ ├── DefaultController.cs
│ │ │ ├── Example.csproj
│ │ │ ├── Example.csproj.user
│ │ │ ├── ExistingImage.ashx
│ │ │ ├── Image.ashx
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── Example.dll
│ │ │ │ ├── Example.dll.incr
│ │ │ │ ├── Example.pdb
│ │ │ │ └── Example.projdata
│ │ │ └── web.config
│ │ ├── httpcompressionmodule.pdf
│ │ ├── HttpCompressionModule.sln
│ │ ├── HttpCompressionModule.suo
│ │ ├── license.txt
│ │ ├── readme.txt
│ │ └── src
│ │ ├── AssemblyInfo.cs
│ │ ├── ConfigSectionHandler.cs
│ │ ├── DeflateFilter.cs
│ │ ├── doc
│ │ │ └── HttpCompressionModule.xml
│ │ ├── GZipFilter.cs
│ │ ├── HttpCompressingFilter.cs
│ │ ├── HttpCompressionModule.cs
│ │ ├── HttpCompressionModule.csproj
│ │ ├── HttpCompressionModule.csproj.user
│ │ ├── HttpCompressionModuleSettings.cs
│ │ ├── HttpOutputFilter.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── HttpCompressionModule.dll
│ │ │ ├── HttpCompressionModule.dll.incr
│ │ │ ├── HttpCompressionModule.pdb
│ │ │ └── HttpCompressionModule.projdata
│ │ └── refs
│ │ ├── SharpZipLib.dll
│ │ └── SharpZipLib.xml
│ └── vb
│ ├── CreateZipFile
│ │ ├── AssemblyInfo.vb
│ │ ├── CreateZipFile.cmbx
│ │ ├── CreateZipFile.prjx
│ │ ├── CreateZipFile.sln
│ │ ├── CreateZipFile.suo
│ │ ├── CreateZipFile.vbproj
│ │ ├── CreateZipFile.vbproj.user
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ └── Main.vb
│ ├── minibzip2
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ ├── Main.vb
│ │ ├── minibzip2.cmbx
│ │ ├── minibzip2.prjx
│ │ ├── minibzip2.sln
│ │ ├── minibzip2.suo
│ │ ├── minibzip2.vbproj
│ │ └── minibzip2.vbproj.user
│ ├── samples.build
│ ├── viewzipfile
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ ├── Main.vb
│ │ ├── viewzipfile.cmbx
│ │ ├── viewzipfile.prjx
│ │ ├── viewzipfile.sln
│ │ ├── viewzipfile.suo
│ │ ├── viewzipfile.vbproj
│ │ └── viewzipfile.vbproj.user
│ └── zipfiletest
│ ├── AssemblyInfo.vb
│ ├── MainForm.resources
│ ├── Main.resx
│ ├── Main.vb
│ ├── zipfiletest.cmbx
│ ├── zipfiletest.prjx
│ ├── zipfiletest.sln
│ ├── zipfiletest.suo
│ ├── zipfiletest.vbproj
│ └── zipfiletest.vbproj.user
├── SharpZlib.build
├── src
│ ├── AssemblyInfo.cs
│ ├── BZip2
│ │ ├── BZip2Constants.cs
│ │ ├── BZip2.cs
│ │ ├── BZip2Exception.cs
│ │ ├── BZip2InputStream.cs
│ │ └── BZip2OutputStream.cs
│ ├── Checksums
│ │ ├── Adler32.cs
│ │ ├── CRC32.cs
│ │ ├── IChecksum.cs
│ │ └── StrangeCRC.cs
│ ├── Core
│ │ ├── FileSystemScanner.cs
│ │ ├── INameTransform.cs
│ │ ├── NameFilter.cs
│ │ └── PathFilter.cs
│ ├── Encryption
│ │ └── PkzipClassic.cs
│ ├── GZip
│ │ ├── GZIPConstants.cs
│ │ ├── GZipException.cs
│ │ ├── GzipInputStream.cs
│ │ └── GzipOutputStream.cs
│ ├── ICSharpCode.SharpZLib.prjx
│ ├── Main.cs
│ ├── SharpZipBaseException.cs
│ ├── Tar
│ │ ├── InvalidHeaderException.cs
│ │ ├── TarArchive.cs
│ │ ├── TarBuffer.cs
│ │ ├── TarEntry.cs
│ │ ├── TarException.cs
│ │ ├── TarHeader.cs
│ │ ├── TarInputStream.cs
│ │ └── TarOutputStream.cs
│ └── Zip
│ ├── Compression
│ │ ├── DeflaterConstants.cs
│ │ ├── Deflater.cs
│ │ ├── DeflaterEngine.cs
│ │ ├── DeflaterHuffman.cs
│ │ ├── DeflaterPending.cs
│ │ ├── Inflater.cs
│ │ ├── InflaterDynHeader.cs
│ │ ├── InflaterHuffmanTree.cs
│ │ ├── PendingBuffer.cs
│ │ └── Streams
│ │ ├── DeflaterOutputStream.cs
│ │ ├── InflaterInputStream.cs
│ │ ├── OutputWindow.cs
│ │ └── StreamManipulator.cs
│ ├── FastZip.cs
│ ├── ZipConstants.cs
│ ├── ZipEntry.cs
│ ├── ZipException.cs
│ ├── ZipFile.cs
│ ├── ZipInputStream.cs
│ ├── ZipNameTransform.cs
│ └── ZipOutputStream.cs
├── tests
│ ├── AssemblyInfo.cs
│ ├── Base
│ │ └── InflaterDeflaterTests.cs
│ ├── BZip2
│ │ └── Bzip2Tests.cs
│ ├── GZip
│ │ └── GZipTests.cs
│ ├── SharpZipLibTests.cmbx
│ ├── SharpZipLibTests.prjx
│ ├── Tar
│ │ └── TarTests.cs
│ └── Zip
│ └── ZipTests.cs
└── uninstallGAC.bat
48 directories, 218 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论