亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

VB.NET中怎么壓縮ZIP文件

發布時間:2021-07-19 16:11:02 來源:億速云 閱讀:854 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關VB.NET中怎么壓縮ZIP文件,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

VB.NET壓縮ZIP文件代碼示例:

  1. Public Function Decompress()
    Function Decompress
    (ByVal algo As String, ByVal 
    data() As Byte) As Byte()  

  2. Try  

  3. Dim sw As New Stopwatch  

  4. '---復制數據(壓縮的)到ms---  

  5. Dim ms As New MemoryStream(data)  

  6. Dim zipStream As Stream = Nothing 

  7. '---開始秒表---  

  8. sw.Start()  

  9. '---使用存儲在ms中的數據解壓---  

  10. If algo = "Gzip" Then  

  11. zipStream = New GZipStream(ms, 
    CompressionMode.Decompress)  

  12. ElseIf algo = "Deflate" Then  

  13. zipStream = New DeflateStream(ms, 
    CompressionMode.Decompress, True)  

  14. End If  

  15. '---用來存儲解壓的數據---  

  16. Dim dc_data() As Byte  

  17. '---解壓的數據存儲于zipStream中;   

  18. '把它們提取到一個字節數組中---  

  19. dc_data = RetrieveBytesFromStream
    (zipStream, data.Length)  

  20. '---停止秒表---  

  21. sw.Stop()  

  22. lblMessage.Text = "Decompression 
    completed. Time spent: "
     & sw.
    ElapsedMilliseconds & "ms" & _  

  23. ", Original size: " & dc_data.Length  

  24. Return dc_data  

  25. Catch ex As Exception  

  26. MsgBox(ex.ToString)  

  27. Return Nothing  

  28. End Try  

  29. End Function  

  30. Public Function RetrieveBytes
    FromStream()Function Retrieve
    BytesFromStream( _  

  31. ByVal stream As Stream, ByVal 
    bytesblock As Integer) As Byte()  

  32. '---從一個流對象中檢索字節---  

  33. Dim data() As Byte  

  34. Dim totalCount As Integer = 0 

  35. Try  

  36. While True  

  37. '---逐漸地增加數據字節數組-的大小--  

  38. ReDim Preserve data(totalCount 
    + bytesblock)  

  39. Dim bytesRead As Integer = 
    stream.Read(data, totalCount, bytesblock)  

  40. If bytesRead = 0 Then  

  41. Exit While  

  42. End If  

  43. totalCount += bytesRead  

  44. End While  

  45. '---確保字節數組正確包含提取的字節數---  

  46. ReDim Preserve data(totalCount - 1)  

  47. Return data  

  48. Catch ex As Exception  

  49. MsgBox(ex.ToString)  

  50. Return Nothing  

  51. End Try  

  52. End Function 

看完上述內容,你們對VB.NET中怎么壓縮ZIP文件有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

额尔古纳市| 包头市| 天镇县| 集贤县| 徐水县| 独山县| 抚州市| 南郑县| 澳门| 麻城市| 司法| 桐柏县| 若尔盖县| 都江堰市| 奉贤区| 象山县| 朝阳市| 永定县| 厦门市| 涡阳县| 宜兰县| 南华县| 内乡县| 南康市| 五台县| 千阳县| 钟山县| 达拉特旗| 甘孜| 乐山市| 靖宇县| 芦山县| 南京市| 桂林市| 金坛市| 社会| 清远市| 榆树市| 雅安市| 崇明县| 虞城县|