以下是使用示例:

壓縮字符串 復(fù)制代碼 代碼 " /> 中文字幕亚洲精品乱码,性做久久久久久久久,少妇在线看www

色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

.NET 2.0 的壓縮功能代碼

在.NET 1.1中我們要實(shí)現(xiàn)壓縮這一功能,一般都是用open source的SharpZipLib 或者調(diào)用J#類庫。
現(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; 
}  

AspNet技術(shù).NET 2.0 的壓縮功能代碼,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 东光县| 灵石县| 綦江县| 元朗区| 平和县| 北京市| 绿春县| 闻喜县| 汝城县| 龙里县| 沭阳县| 息烽县| 大理市| 临武县| 泗阳县| 怀化市| 吴江市| 丁青县| 兴海县| 武冈市| 清镇市| 麻城市| 读书| 开化县| 大埔区| 汾西县| 康平县| 抚宁县| 化德县| 邳州市| 十堰市| 临猗县| 东乡县| 宁海县| 紫云| 寻甸| 杭锦旗| 宽城| 博爱县| 岢岚县| 嵩明县|