0
我將我的名爲Result
的字節數組壓縮爲zipped.dat
文件。如何再次解壓我的字節數組?
Using zip As Ionic.Zip.ZipFile = New Ionic.Zip.ZipFile
zip.AddEntry("Result", Result)
zip.Save("zipped.dat")
End Using
我想打開該文件在運行時,得到zipped.dat
內容,終於找回我的Result
陣列。
'Extract contain to Result array again
Dim Result() as byte = ...
感謝的答案,但我需要運行時字節數組。我不想提取內容到一個文件.. –
我添加這問題的答案。 – xpda