.NET GZip压缩和解压缩文件

本文介绍了一个使用GZipStream进行文件压缩和解压缩的方法。通过FileStream读取原始文件内容,并利用GZipStream将其压缩到目标文件中;反之亦然,能够从压缩文件还原出原始数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

   //压缩文件 

public static void ZGip(string fileName, string gipFileName)

        { 
         
            FileStream fc = File.OpenRead(fileName);
            FileStream fr = File.Create(gipFileName);
            GZipStream gzs = new GZipStream(fr, CompressionMode.Compress); //压缩文件类
            /*
                     int thebyte=fc.ReadByte();
                    while(thebyte!=-1)
                    {
                         gzs.WriteByte((byte)thebyte);
                        thebyte=fc.ReadByte();
                    }
              */         
            byte []arr = new byte[fc.Length];
            fc.Read(arr, 0, (int)fc.Length);
            gzs.Write(arr, 0, (int)fc.Length);
            gzs.Close();
            fc.Close();
            fr.Close();
            

        }

//解压缩文件方法

        public static void DeZGip(string fileName, string gipFileName)
        {
            //准备输入输出文件
            FileStream fc = File.Create(fileName);
            FileStream fr = File.OpenRead(gipFileName);

            GZipStream gzs = new GZipStream(fr, CompressionMode.Decompress);

            byte[] arr = new byte[fr.Length];
            fr.Read(arr, 0, (int)fr.Length);
            fc.Write(arr, 0, (int)fr.Length);
            gzs.Close();
            fr.Close();
            fc.Close();
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值