admin管理员组文章数量:1345078
I am trying to unzip a byte array into another byte. I am providing the code used.
Most of the zip files that get processed unzip correctly but every once in while, the final byte count does not match what the zip file says is supposed to be there.
Private Function Decompress(ByVal toDecompress As Byte()) As Byte()
Dim currentEntrySize As Long
Try
Dim InData() As Byte
Dim bytes_read As Integer
' Get the stream of the source file.
Using inputStream As New MemoryStream(toDecompress)
' Create the decompressed stream.
Using decompressionStream As ZipInputStream = New ICSharpCode.SharpZipLib.Zip.ZipInputStream(inputStream)
Dim currentEntry As Zip.ZipEntry
currentEntry = decompressionStream.GetNextEntry()
currentEntrySize = currentEntry.Size
InternalZipFileName = currentEntry.Name
ReDim InData(CInt(currentEntrySize) - 1)
bytes_read = decompressionStream.Read(InData, 0, CInt(currentEntrySize))
If CInt(currentEntrySize) <> bytes_read Then
Console.WriteLine("currentEntrySize <> bytes_read - " & currentEntrySize & " " & bytes_read & " " & InternalZipFileName)
Return Nothing
End If
Return InData
End Using
End Using
Catch ex As Exception
Console.WriteLine(ex.Message & vbCrLf & ex.StackTrace)
Return Nothing
End Try
End Function
本文标签: vbnetZip compression not unpacking fullyStack Overflow
版权声明:本文标题:vb.net - Zip compression not unpacking fully - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743761601a2534479.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论