欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#使用GZipStream解压缩数据文件的方法

程序员文章站 2023-11-13 13:29:10
本文实例讲述了c#使用gzipstream解压缩数据文件的方法。分享给大家供大家参考。具体分析如下: gzipstream用于从一个流读取数据写入到另一个流,gzipst...

本文实例讲述了c#使用gzipstream解压缩数据文件的方法。分享给大家供大家参考。具体分析如下:

gzipstream用于从一个流读取数据写入到另一个流,gzipstream不能写入到其它的资源,比如文件或者内存,只能从流到流。

gzipstream使用的一般流程如下:

打开一个现有的文件 
打开/创建输出文件 
创建gzipstream对象 
逐字节读源文件,并把它传递到gzipstream 
使用gzipstream写入到输出文件流

string sourcefilename = filetobeuncompressed;
filestream sourcefile = file.openread(sourcefilename);
filestream destinationfile = file.create(outputfilename);
gzipstream compressionstream = new gzipstream(sourcefile, compressionmode.decompress);
int sourcebyte = compressionstream.readbyte();
while(sourcebyte != -1)
{
  destinationfile.writebyte((byte)sourcebyte);
  sourcebyte = compressionstream.readbyte();
}

希望本文所述对大家的c#程序设计有所帮助。