时间:2021-05-20
本文实例讲述了C#实现解压GZip文件的方法。分享给大家供大家参考。具体实现方法如下:
public void ungzip(string path, string decomPath, bool overwrite){ //for overwriting purposes if (File.Exists(decomPath)) { if (overwrite) { File.Delete(decomPath); } else { throw new IOException("The decompressed path you specified already exists and cannot be overwritten."); } } //create our file streams GZipStream stream = new GZipStream(new FileStream(path, FileMode.Open, FileAccess.ReadWrite), CompressionMode.Decompress); FileStream decompressedFile = new FileStream(decomPath, FileMode.OpenOrCreate, FileAccess.Write); //data represents a byte from the compressed file //it's set through each iteration of the while loop int data; while ((data = stream.ReadByte()) != -1) //iterates over the data of the compressed file and writes the decompressed data { decompressedFile.WriteByte((byte)data); } //close our file streams decompressedFile.Close(); stream.Close();}希望本文所述对大家的C#程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#实现的文件压缩和解压缩类。分享给大家供大家参考。具体分析如下:这个C#代码包含了几个类,封装了文件压缩和解压缩常用的方法,包括直接通过代码进行
本文实例讲述了C#文件流进行压缩和解压缩的方法。分享给大家供大家参考。具体实现方法如下:usingSystem;usingSystem.Collections.
linux下gzip的压缩详解Linux压缩保留源文件的方法:gzip–cfilename>filename.gzLinux解压缩保留源文件的方法:gunzip
gzip功能说明:解压文件。语 法:gzip[-acfhlLnNqrtvV][-s][文件...]或gzip[-acfhlLnNqrtvV][-s][目录]补
本文实例讲述了C#实现文件压缩与解压的方法。分享给大家供大家参考,具体如下:在企业开发过程中经常会遇到文件的压缩与解压,虽然网上很多流行的压缩文件格式都是RAR