gpt4 book ai didi

.net - 将内存流读入字节数组

转载 作者:行者123 更新时间:2023-12-04 05:35:48 26 4
gpt4 key购买 nike

我在读取块中的内存流时遇到了一些麻烦。

Dim ByteBuffer(4096) As Byte

While ProcessedBytes < FileLength

BytesRead = MemoryStream.Read(ByteBuffer, 0, 4096)
'Write the buffer to an output stream
ProcessedBytes += BytesRead

End While

'MemoryStream.Read(ByteBuffer, 0, 4096)' 总是返回零。我看过'MemoryStream.Length',流中肯定有一些字节。

最佳答案

也许它返回 0 因为你到达了流的末尾。在开始阅读流之前,请确保将位置设置为 0。

MemoryStream.Position = 0


MemoryStream.Seek(0, SeekOrigin.Begin)

关于.net - 将内存流读入字节数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11956697/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com