C#BinaryReader.Read()以垃圾开头

时间:2010-11-24 00:03:34

标签: c# memorystream binaryreader

我想知道我在这里做错了什么。我正在尝试使用二进制读取器来简化从流中获取初始四个字节到Int32值,该值告诉我其余数据的预期时间。

static void Main(string[] args)
{
    MemoryStream stream = new MemoryStream();

    BinaryWriter writer = new BinaryWriter(stream);

    string s = "Imagine this is a very very long string.";

    writer.Write(s.Length);
    writer.Write(s);
    writer.Flush();

    BinaryReader reader = new BinaryReader(stream);
    reader.BaseStream.Seek(0, SeekOrigin.Begin);

    char[] aChars = new char[reader.ReadInt32()];
    reader.Read(aChars, 0, aChars.Length);
    Console.WriteLine(new string(aChars));
}

输出应该是输入,但是我得到了这个(注意第一个字符从字符串变为字符串)

  

(想象一下,这是一个非常长的字符串

有人可以向我解释我做错了什么吗?理想情况下,第二次读取将继续,直到总读取字节数等于前四个字节的值。此代码只是一个简化,以显示我遇到的问题。流的位置似乎是正确的(4),但它几乎看起来像是从2开始读。

1 个答案:

答案 0 :(得分:8)

BinaryWriter.Write(String)将一个长度为前缀的字符串写入此流。 这意味着它首先将字符串的长度写入流,然后使用某种编码将字符串写入字符串。长度一次编码7位,而不是32位整数。

如果你想从流中读取,你应该使用BinaryReader.ReadString,它从流中读取一个长度为前缀的字符串。