C#使用GZipStream解压缩数据文件的方法
本文实例讲述了C#使用GZipStream解压缩数据文件的方法。分享给大家供大家参考。具体分析如下:
GZipStream用于从一个流读取数据写入到另一个流,GZipStream不能写入到其它的资源,比如文件或者内存,只能从流到流。
GZipStream使用的一般流程如下:
打开一个现有的文件
打开/创建输出文件
创建GZipStream对象
逐字节读源文件,并把它传递到GZipStream
使用GZipStream写入到输出文件流
Stringsourcefilename=FILETOBEUNCOMPRESSED;
Filestreamsourcefile=File.OpenRead(sourcefilename);
Filestreamdestinationfile=File.Create(outputfilename);
GZipStreamcompressionstream=newGZipStream(sourcefile,CompressionMode.Decompress);
intsourcebyte=compressionstream.ReadByte();
while(sourcebyte!=-1)
{
destinationfile.WriteByte((byte)sourcebyte);
sourcebyte=compressionstream.ReadByte();
}
希望本文所述对大家的C#程序设计有所帮助。