博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#自定义字符串压缩和解压缩源码库
阅读量:5951 次
发布时间:2019-06-19

本文共 2439 字,大约阅读时间需要 8 分钟。

如下的内容是关于C#自定义字符串压缩和解压缩库的内容。

class ZipLib    {        public static string Zip(string value)        {            byte[] byteArray = new byte[value.Length];            int indexBA = 0;            foreach (char item in value.ToCharArray())            {                byteArray[indexBA++] = (byte)item;            }            System.IO.MemoryStream ms = new System.IO.MemoryStream();            System.IO.Compression.GZipStream sw = new System.IO.Compression.GZipStream(ms,                System.IO.Compression.CompressionMode.Compress);            sw.Write(byteArray, 0, byteArray.Length);            sw.Close();            byteArray = ms.ToArray();            System.Text.StringBuilder sB = new System.Text.StringBuilder(byteArray.Length);            foreach (byte item in byteArray)            {                sB.Append((char)item);            }            ms.Close();            sw.Dispose();            ms.Dispose();            return sB.ToString();        }        public static string UnZip(string value)        {            byte[] byteArray = new byte[value.Length];            int indexBA = 0;            foreach (char item in value.ToCharArray())            {                byteArray[indexBA++] = (byte)item;            }            System.IO.MemoryStream ms = new System.IO.MemoryStream(byteArray);            System.IO.Compression.GZipStream sr = new System.IO.Compression.GZipStream(ms,                System.IO.Compression.CompressionMode.Decompress);            byteArray = new byte[byteArray.Length];            int rByte = sr.Read(byteArray, 0, byteArray.Length);            System.Text.StringBuilder sB = new System.Text.StringBuilder(rByte);            for (int i = 0; i < rByte; i++)            {                sB.Append((char)byteArray[i]);            }            sr.Close();            ms.Close();            sr.Dispose();            ms.Dispose();            return sB.ToString();        }    }                                                                                        代码使用方法                                                                                        string str_org="aaaaaaaaaabbbbbbbbbbbbcccccccccdddddddd";            string str_comp = ZipLib.Zip(str_org);            Console.WriteLine("str_comp:" + str_comp);            string str_uncomp = ZipLib.UnZip(str_comp);            Console.WriteLine("str_uncomp:" + str_uncomp);            Console.ReadLine();                              复制代码
                                                                                                                 

转载地址:http://zapxx.baihongyu.com/

你可能感兴趣的文章
[NOIP2018 TG D2T1]旅行
查看>>
vmvare centos 7.0 root密码忘记后重置及总结
查看>>
Java学习-集合的理解
查看>>
iOS验证码倒计时(GCD实现)
查看>>
iOS中的过滤器和正则表达式(NSPredicate,NSRegularExpression)
查看>>
java ee 5周 ajax
查看>>
canvas和svg
查看>>
结对:复利美化版
查看>>
HDU_2689_Sort it
查看>>
urllib模块使用笔记
查看>>
mysql 连接慢的问题(超过了1秒)
查看>>
1297. [SCOI2009]迷路【矩阵乘法】
查看>>
Linux嵌入式GDB调试环境搭建
查看>>
安全性测试要点转摘
查看>>
java分析jvm常用指令
查看>>
【Linux】Linux 在线安装yum
查看>>
oracle 管理操作 (转)
查看>>
POJ 1836, Alignment
查看>>
前端工程化
查看>>
Javascript模块化编程(三):require.js的用法 (转)
查看>>