c#如何解压缩数据文件(deflatestream方式解压缩文件)

发布时间:2020-09-26编辑:脚本学堂
在c#编程中可以用deflatestream解压缩数据文件,本文实例演示了deflatestream方法对文件进行压缩及解压缩的详细过程,使用deflate压缩数据文件的一般过程。

c#使用deflatestream解压缩数据文件
1、DeflateStream方法用于从一个流中读取数据,并写入到另一个流。
2、DeflateStream不写入数据到其它类型的资源,比如文件或者内存。
3、DeflateStream在写入另一个流的时候,它会对数据进行压缩和解压缩。

使用DEFLATE压缩数据文件的一般过程:
1、打开一个现有的文件 
2、打开/创建输出文件 
3、创建减缩对象 
4、逐字节读取源文件,并把它传递给DEFLATE对象 

使用deflate对象写入输出文件流
 

复制代码 代码示例:
String sourcefilename = FILETOBEUNCOMPRESsed;
Filestream sourcefile = File.OpenRead(sourcefilename);
Filestream destinationfile = File.Create(outputfilename);
DeflateStream compressionstream = new DeflateStream(sourcefile,CompressionMode.Decompress);
int sourcebyte = compressionstream.ReadByte();
while(sourcebyte != -1)
{
  destinationfile.WriteByte((byte)sourcebyte);
  sourcebyte = compressionstream.ReadByte();
}