使用GZipStream类在C#中进行数据压缩和解压缩操作

GZipStream是.NET中用于实现GZip算法的类。GZip是一种用于压缩和解压缩数据的算法,广泛应用于文件压缩和网络传输等场景

GZip算法简介

GZip是基于DEFLATE算法的压缩方法,由Jean-Loup Gailly和Mark Adler创建,最初用于Unix系统中的gzip工具。GZip主要用于减少文件大小以便更高效地存储和传输数据

GZipStream类

在.NET中,GZipStream类位于System.IO.Compression命名空间中,提供了使用GZip算法进行数据压缩和解压缩的功能。GZipStream类继承自Stream类,因此可以与其他流操作类(如MemoryStream和FileStream)一起使用

实例

这段代码展示了如何使用GZipStream类在C#中进行数据压缩和解压缩操作。它展示了如何将一个字符串转换为字节数组,使用GZip算法进行压缩,然后再将其解压缩回原始字符串。通过这个示例,我们可以看到压缩算法在处理具有重复模式的数据时是如何工作的,以及如何利用MemoryStream和GZipStream类实现压缩和解压缩功能。这对于需要减少存储空间或提高网络传输效率的应用非常有用

cs 复制代码
using System;
using System.IO;
using System.IO.Compression;
using System.Text;

class Program
{
    static void Main()
    {
        // 原始数据,可以是任意字节数组
        string originalData = "This is some text that we want to compress using GZip. " +
                              "This is some text that we want to compress using GZip. " +
                              "This is some text that we want to compress using GZip. " +
                              "This is some text that we want to compress using GZip. " +
                              "This is some text that we want to compress using GZip.";
        byte[] originalBytes = Encoding.UTF8.GetBytes(originalData);

        // 调用 Compress 方法压缩数据
        byte[] compressedBytes = Compress(originalBytes);

        // 输出原始数据和压缩后的数据大小
        Console.WriteLine($"Original Size: {originalBytes.Length} bytes");
        Console.WriteLine($"Compressed Size: {compressedBytes.Length} bytes");

        // 调用 Decompress 方法解压缩数据
        byte[] decompressedBytes = Decompress(compressedBytes);
        string decompressedData = Encoding.UTF8.GetString(decompressedBytes);

        // 验证解压缩后的数据是否与原始数据相同
        Console.WriteLine($"Decompressed Data: {decompressedData}");
    }

    public static byte[] Compress(byte[] bytes)
    {
        using (var memoryStream = new MemoryStream())
        {
            using (var gzipStream = new GZipStream(memoryStream, CompressionLevel.Optimal))
            {
                gzipStream.Write(bytes, 0, bytes.Length);
            }
            return memoryStream.ToArray();
        }
    }

    public static byte[] Decompress(byte[] bytes)
    {
        using (var memoryStream = new MemoryStream(bytes))
        {
            using (var outputStream = new MemoryStream())
            {
                using (var decompressStream = new GZipStream(memoryStream, CompressionMode.Decompress))
                {
                    decompressStream.CopyTo(outputStream);
                }
                return outputStream.ToArray();
            }
        }
    }
}

运行结果:

cs 复制代码
Original Size: 274 bytes
Compressed Size: 76 bytes
Decompressed Data: This is some text that we want to compress using GZip. This is some text that we want to compress using GZip. This is some text that we want to compress using GZip. This is some text that we want to compress using GZip. This is some text that we want to compress using GZip.

参考

相关推荐
bryant_meng40 分钟前
【python】OpenCV—Image Moments
开发语言·python·opencv·moments·图片矩
若亦_Royi1 小时前
C++ 的大括号的用法合集
开发语言·c++
资源补给站2 小时前
大恒相机开发(2)—Python软触发调用采集图像
开发语言·python·数码相机
m0_748247552 小时前
Web 应用项目开发全流程解析与实战经验分享
开发语言·前端·php
刘大辉在路上2 小时前
突发!!!GitLab停止为中国大陆、港澳地区提供服务,60天内需迁移账号否则将被删除
git·后端·gitlab·版本管理·源代码管理
6.943 小时前
Scala学习记录 递归调用 练习
开发语言·学习·scala
FF在路上3 小时前
Knife4j调试实体类传参扁平化模式修改:default-flat-param-object: true
java·开发语言
VinciYan3 小时前
基于Jenkins+Docker的自动化部署实践——整合Git与Python脚本实现远程部署
python·ubuntu·docker·自动化·jenkins·.net·运维开发
码农君莫笑3 小时前
使用blazor开发信息管理系统的应用场景
数据库·信息可视化·c#·.net·visual studio
众拾达人4 小时前
Android自动化测试实战 Java篇 主流工具 框架 脚本
android·java·开发语言