.NET 2.0 的壓縮功能代碼
更新時(shí)間:2007年04月13日 00:00:00 作者:
在.net 1.1中我們要實(shí)現(xiàn)壓縮這一功能,一般都是用open source的SharpZipLib 或者調(diào)用J#類(lèi)庫(kù)。
現(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)文章
動(dòng)態(tài)向頁(yè)面添加控件和使用正則表達(dá)式的代碼
動(dòng)態(tài)向頁(yè)面添加控件和使用正則表達(dá)式的實(shí)現(xiàn)代碼。2009-08-08
.NET使用Collections.Pooled提升性能優(yōu)化的方法
這篇文章主要介紹了.NET使用Collections.Pooled性能優(yōu)化的方法,今天要給大家分享類(lèi)庫(kù)Collections.Pooled,它是通過(guò)池化內(nèi)存來(lái)達(dá)到降低內(nèi)存占用和GC的目的,另外也會(huì)帶大家看看源碼,為什么它會(huì)帶來(lái)這些性能提升,一起通過(guò)本文學(xué)習(xí)下吧2022-05-05
ASPX向ASCX傳值以及文本創(chuàng)建圖片(附源碼)
把用戶(hù)在TextBox輸入的文字創(chuàng)建為一個(gè)圖片,ASCX的ImageButton的ImageUrl重新指向這剛產(chǎn)生的圖片,接下來(lái)介紹下ASPX向ASCX傳值,感興趣的朋友可以參考下哈2013-03-03
ASP.NET簡(jiǎn)化編輯界面解決思路及實(shí)現(xiàn)代碼(2)
這篇與前一篇改進(jìn)部分,也許大家會(huì)留意到動(dòng)畫(huà)演示,主要是GridVeiw的更新與刪除會(huì)在每row都有。因此Insus.NET把它抽取出來(lái),放在GridView外,感興趣的朋友可以了解下啊,希望本文對(duì)你有所幫助2013-01-01
asp.net web頁(yè)面自定義分頁(yè)控件使用詳解
這篇文章主要為大家詳細(xì)介紹了asp.net web頁(yè)面自定義分頁(yè)控件使用,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-01-01
讓GridView只顯示特定用戶(hù)的數(shù)據(jù)的方法
GridView 只顯示特定用戶(hù)的數(shù)據(jù)2008-10-10
.net開(kāi)發(fā)人員常犯的錯(cuò)誤分析小結(jié)
我最新一直在和新手和入手級(jí)開(kāi)發(fā)人員打交道,我注意到一些開(kāi)發(fā)人員(甚至是老手)在粗心時(shí)常犯的錯(cuò)誤。這些錯(cuò)誤各不相同,從工具的使用到網(wǎng)絡(luò)服務(wù)的適當(dāng)應(yīng)用都有。以下是六個(gè)主要的開(kāi)發(fā)錯(cuò)誤。2009-03-03
GridView分頁(yè)的實(shí)現(xiàn)以及自定義分頁(yè)樣式功能實(shí)例
本文為大家詳細(xì)介紹下GridView實(shí)現(xiàn)分頁(yè)并自定義的分頁(yè)樣式,具體示例代碼如下,有想學(xué)習(xí)的朋友可以參考下哈,希望對(duì)大家有所幫助2013-07-07

