这是我喜欢使用的方法。我相信,这段代码没什么新鲜的。
public static byte[] ReadFully(Stream stream, int initialLength)
{
// If we've been passed an unhelpful initial length, just
// use 1K.
if (initialLength < 1)
{
initialLength = 1024;
}
byte[] buffer = new byte[initialLength];
int read = 0;
int chunk;
while ((chunk = stream.Read(buffer, read, buffer.Length - read)) > 0)
{
read += chunk;
// If we've reached the end of our buffer, check to see if there's
// any more information
if (read == buffer.Length)
{
int nextByte = stream.ReadByte();
// End of stream? If so, we're done
if (nextByte == -1)
{
return buffer;
}
// Nope. Resize the buffer, put in the byte we've just
// read, and continue
byte[] newBuffer = new byte[buffer.Length * 2];
Array.Copy(buffer, newBuffer, buffer.Length);
newBuffer[read] = (byte)nextByte;
buffer = newBuffer;
read++;
}
}
// Buffer is now too big. Shrink it.
byte[] ret = new byte[read];
Array.Copy(buffer, ret, read);
return ret;
}
我的目标是读取从TCP客户端发送的数据,例如box{"id":1,"aid":1}
这是一个命令,可以在我的应用程序中解释类似Jason的文本。
而且这个文本每次都不一定大小相同。
下次可以run{"id":1,"aid":1,"opt":1}
。
此行调用的方法;
var serializedMessageBytes = ReadFully(_receiveMemoryStream, 1024);
Please click to see; Received data in receiveMemoryStream
虽然我们可以看到流中的数据,
在ReadFully
方法中,“chunck”始终返回0
,方法返回{byte[0]}
。
非常感谢任何帮助。
答案 0 :(得分:1)
在Watch窗口中查看您的流,流(19)的位置位于数据的末尾,因此没有任何内容可供阅读。这可能是因为您刚刚将数据写入流并且之后没有重置位置。
如果您乐意始终从流的开头读取,或者检查填充流的代码,请在函数的开头添加stream.Position = 0;
或stream.Seek(0, System.IO.SeekOrigin.Begin);
语句。请注意,某些流实现不支持搜索。