.NET 2.0 的壓縮功能代碼
更新時(shí)間:2007年04月13日 00:00:00 作者:
在.net 1.1中我們要實(shí)現(xiàn)壓縮這一功能,一般都是用open source的SharpZipLib 或者調(diào)用J#類庫。
現(xiàn)在在.net 2.0中增加了壓縮功能,名字空間為 using System.IO.Compression;
以下是使用示例:
壓縮字符串
public static string ZipString(string unCompressedString)
{
byte[] bytData = System.Text.Encoding.UTF8.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);
}
解壓縮字符串
public static string UnzipString(string unCompressedString)
{
System.Text.StringBuilder uncompressedString = new System.Text.StringBuilder();
byte[] writeData = new byte[4096];
byte[] bytData = System.Convert.FromBase64String(unCompressedString);
int totalLength = 0;
int size = 0;
Stream s = new GZipStream(new MemoryStream(bytData), CompressionMode.Decompress);
while (true)
{
size = s.Read(writeData, 0, writeData.Length);
if (size > 0)
{
totalLength += size;
uncompressedString.Append(System.Text.Encoding.UTF8.GetString(writeData, 0, size));
}
else
{
break;
}
}
s.Close();
return uncompressedString.ToString();
}
壓縮文件
public static bool AddZip(string srcFilename, string zipFileName)
{
if (!File.Exists(srcFilename))
return false;
bool result;
FileStream fs = null, output = null;
GZipStream zipStream = null;
try
{
fs = new FileStream(srcFilename, FileMode.Open, FileAccess.Read);
byte[] buffer = new byte[fs.Length];
fs.Read(buffer, 0, buffer.Length);
fs.Close();
if (!File.Exists(zipFileName))
{
output = File.Create(zipFileName);
zipStream = new GZipStream(output, CompressionMode.Compress);
zipStream.Write(buffer, 0, buffer.Length);
result = true;
}
else
{
result = false;
}
}
catch(Exception)
{
result = false;
}
finally
{
if (zipStream != null)
{
zipStream.Flush();
zipStream.Close();
}
}
return result;
}
現(xiàn)在在.net 2.0中增加了壓縮功能,名字空間為 using System.IO.Compression;
以下是使用示例:
壓縮字符串
復(fù)制代碼 代碼如下:
public static string ZipString(string unCompressedString)
{
byte[] bytData = System.Text.Encoding.UTF8.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);
}
解壓縮字符串
復(fù)制代碼 代碼如下:
public static string UnzipString(string unCompressedString)
{
System.Text.StringBuilder uncompressedString = new System.Text.StringBuilder();
byte[] writeData = new byte[4096];
byte[] bytData = System.Convert.FromBase64String(unCompressedString);
int totalLength = 0;
int size = 0;
Stream s = new GZipStream(new MemoryStream(bytData), CompressionMode.Decompress);
while (true)
{
size = s.Read(writeData, 0, writeData.Length);
if (size > 0)
{
totalLength += size;
uncompressedString.Append(System.Text.Encoding.UTF8.GetString(writeData, 0, size));
}
else
{
break;
}
}
s.Close();
return uncompressedString.ToString();
}
壓縮文件
復(fù)制代碼 代碼如下:
public static bool AddZip(string srcFilename, string zipFileName)
{
if (!File.Exists(srcFilename))
return false;
bool result;
FileStream fs = null, output = null;
GZipStream zipStream = null;
try
{
fs = new FileStream(srcFilename, FileMode.Open, FileAccess.Read);
byte[] buffer = new byte[fs.Length];
fs.Read(buffer, 0, buffer.Length);
fs.Close();
if (!File.Exists(zipFileName))
{
output = File.Create(zipFileName);
zipStream = new GZipStream(output, CompressionMode.Compress);
zipStream.Write(buffer, 0, buffer.Length);
result = true;
}
else
{
result = false;
}
}
catch(Exception)
{
result = false;
}
finally
{
if (zipStream != null)
{
zipStream.Flush();
zipStream.Close();
}
}
return result;
}
您可能感興趣的文章:
相關(guān)文章
.NET使用Collections.Pooled提升性能優(yōu)化的方法
這篇文章主要介紹了.NET使用Collections.Pooled性能優(yōu)化的方法,今天要給大家分享類庫Collections.Pooled,它是通過池化內(nèi)存來達(dá)到降低內(nèi)存占用和GC的目的,另外也會帶大家看看源碼,為什么它會帶來這些性能提升,一起通過本文學(xué)習(xí)下吧2022-05-05
ASPX向ASCX傳值以及文本創(chuàng)建圖片(附源碼)
把用戶在TextBox輸入的文字創(chuàng)建為一個(gè)圖片,ASCX的ImageButton的ImageUrl重新指向這剛產(chǎn)生的圖片,接下來介紹下ASPX向ASCX傳值,感興趣的朋友可以參考下哈2013-03-03
ASP.NET簡化編輯界面解決思路及實(shí)現(xiàn)代碼(2)
這篇與前一篇改進(jìn)部分,也許大家會留意到動畫演示,主要是GridVeiw的更新與刪除會在每row都有。因此Insus.NET把它抽取出來,放在GridView外,感興趣的朋友可以了解下啊,希望本文對你有所幫助2013-01-01
讓GridView只顯示特定用戶的數(shù)據(jù)的方法
GridView 只顯示特定用戶的數(shù)據(jù)2008-10-10
GridView分頁的實(shí)現(xiàn)以及自定義分頁樣式功能實(shí)例
本文為大家詳細(xì)介紹下GridView實(shí)現(xiàn)分頁并自定義的分頁樣式,具體示例代碼如下,有想學(xué)習(xí)的朋友可以參考下哈,希望對大家有所幫助2013-07-07

