以下是使用示例:

壓縮字符串 復(fù)制代碼 代碼 " /> 91.成人天堂一区,亚洲二区自拍,大胆人体一区

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

.NET 2.0 的壓縮功能代碼

在.NET 1.1中我們要實(shí)現(xiàn)壓縮這一功能,一般都是用open source的SharpZipLib 或者調(diào)用J#類庫(kù)。
現(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)載需保留來(lái)源!

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

主站蜘蛛池模板: 和龙市| 泸溪县| 沈丘县| 平乡县| 图片| 佛山市| 鲁甸县| 英超| 新宾| 山西省| 孝昌县| 乐安县| 瑞安市| 怀柔区| 绥宁县| 桂东县| 长子县| 来凤县| 贺兰县| 甘肃省| 广饶县| 临夏县| 太和县| 班玛县| 资源县| 工布江达县| 陆丰市| 双鸭山市| 延安市| 交口县| 双城市| 卓资县| 且末县| 平塘县| 邛崃市| 浦城县| 且末县| 广宗县| 乐至县| 建宁县| 毕节市|