将二进制文件反序列化为字符串

发布于 2024-11-09 09:32:41 字数 626 浏览 0 评论 0原文

如何将二进制文件反序列化为字符串? 这是到目前为止我的示例代码:

public function serialize()
{   
    FileStream fs = new FileStream("test.txt", FileMode.Append);
    BinaryFormatter formatter = new BinaryFormatter();
    formatter.Serialize(fs, textBox1.Text);
    fs.Flush();
    fs.Close();
}

public function deserialize()
{
    FileStream fs = File.Open(openFileDialog1.FileName, FileMode.Open);

    BinaryFormatter formatter = new BinaryFormatter();
    richTextBox1.Text = formatter.Deserialize(mystream) as string;
    fs.Flush();
    fs.Close();
}

当我开始调试应用程序时,它仅显示流的第一个字符串。其余的流没有出现。我应该如何解决这个问题?

How do I deserialize a binary file to a string?
This is my sample code so far:

public function serialize()
{   
    FileStream fs = new FileStream("test.txt", FileMode.Append);
    BinaryFormatter formatter = new BinaryFormatter();
    formatter.Serialize(fs, textBox1.Text);
    fs.Flush();
    fs.Close();
}

public function deserialize()
{
    FileStream fs = File.Open(openFileDialog1.FileName, FileMode.Open);

    BinaryFormatter formatter = new BinaryFormatter();
    richTextBox1.Text = formatter.Deserialize(mystream) as string;
    fs.Flush();
    fs.Close();
}

When I start to debug the application, it only shows the first string of the stream. The rest of the stream did not show up. How should I fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

静若繁花 2024-11-16 09:32:41

只需使用

System.IO.File.WriteAllText(fileName, textBox1.Text);

textBox1.Text = System.IO.File.ReadAllText(fileName);

Just use

System.IO.File.WriteAllText(fileName, textBox1.Text);

and

textBox1.Text = System.IO.File.ReadAllText(fileName);
变身佩奇 2024-11-16 09:32:41

正确的方法是将要序列化的所有值放入可序列化结构中,然后序列化该结构。在另一端,您反序列化该结构,然后将值放在需要的位置。

请注意,二进制序列化器生成二进制输出,而不是文本输出。如果您想要人类可读的序列化数据,您可以使用 XmlSerializer。

The right way to do this is to put all of the values that you want to serialize into a serializable structure and then serialize that structure. On the other end you deserialize that structure and then put the values where they need to go.

Note that the binary serializer produces binary, not text output. If you want human readable serialized data you can use the XmlSerializer instead.

电影里的梦 2024-11-16 09:32:41

二进制序列化序列化对象图;它不只是写入字符串。
组合对象图是没有意义的。

您应该直接使用 File 类读取和写入文件。

Binary serialization serializes object graphs; it doesn't just write strings.
It wouldn't make sense to combine object graphs.

You should read and write the file directly using the File class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文