利用C#解压缩文件

压缩文件

分别引用开源的SharpZip 和 .net2005的Gzip

using  ICSharpCode.SharpZipLib.BZip2;    // SharpZip 的命名空间
using  System.IO.Compression;            // Gzip 的命名空间

public   static   class  CompressDeCompress
    
{
        
//压缩SharpZip
        public static string SharpZipCompress(string uncompressedString)
        
{
            
byte[] bytData = System.Text.Encoding.Unicode.GetBytes(uncompressedString);
            MemoryStream ms 
= new MemoryStream();
            Stream s 
= new BZip2OutputStream(ms);
            s.Write(bytData, 
0, bytData.Length);
            s.Close();
            
byte[] compressedData = (byte[])ms.ToArray();
            
return System.Convert.ToBase64String(compressedData, 0, compressedData.Length);
        }

        
//解压SharpZip
        public static string SharpZipDeCompress(string compressedString)
        
{
            System.Text.StringBuilder uncompressedString 
= new System.Text.StringBuilder();
            
int totalLength = 0;
            
byte[] bytInput = System.Convert.FromBase64String(compressedString); ;
            
byte[] writeData = new byte[4096];
            Stream s2 
= new BZip2InputStream(new MemoryStream(bytInput));
            
while (true)
            
{
                
int size = s2.Read(writeData, 0, writeData.Length);
                
if (size > 0)
                
{
                    totalLength 
+= size;
                    uncompressedString.Append(System.Text.Encoding.Unicode.GetString(writeData, 
0, size));
                }

                
else
                
{
                    
break;
                }

            }

            s2.Close();
            
return uncompressedString.ToString();
        }

        压缩Gzip
        
public static string GzipCompress(string uncompressedString)
        
{
            
byte[] bytData = System.Text.Encoding.Unicode.GetBytes(uncompressedString);
            MemoryStream ms 
= new MemoryStream();
            Stream s 
= new GZipStream(ms, CompressionMode.Compress);
            s.Write(bytData, 
0, bytData.Length);
            s.Close();
            
byte[] compressedData = (byte[])ms.ToArray();
            
return System.Convert.ToBase64String(compressedData, 0, compressedData.Length);
        }

        
//解压Gzip
        public static string GzipDeCompress(string compressedString)
        
{
            System.Text.StringBuilder uncompressedString 
= new System.Text.StringBuilder();
            
int totalLength = 0;
            
byte[] bytInput = System.Convert.FromBase64String(compressedString); ;
            
byte[] writeData = new byte[4096];
            Stream s2 
= new GZipStream(new MemoryStream(bytInput), CompressionMode.Decompress);
            
while (true)
            
{
                
int size = s2.Read(writeData, 0, writeData.Length);
                
if (size > 0)
                
{
                    totalLength 
+= size;
                    uncompressedString.Append(System.Text.Encoding.Unicode.GetString(writeData, 
0, size));
                }

                
else
                
{
                    
break;
                }

            }

            s2.Close();
            
return uncompressedString.ToString();
        }

    }

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值