使用BinaryFormatter将对象保存到文件中

本文关键字:存到文件 对象 BinaryFormatter 使用 | 更新日期: 2023-09-27 17:58:02

我想把我的列表保存到一个文本文件中,所以我把它转换成一个数组,现在我想把它写下来。

        public void Save(Group g)
    {
        string[] lines = g.elementsList.ConvertAll(p => p.ToString()).ToArray();
        BinaryFormatter bf = new BinaryFormatter();
        using (Stream file = File.OpenWrite(path)) 
        {
            foreach (string line in lines)
            {
                using (MemoryStream ms = new MemoryStream())
                {
                    bf.Serialize(ms, lines);
                    byte[] ser = ms.ToArray();
                    <--------stuck here :(
                }
            }
        }

从这里我该怎么继续?或者我应该改变整个方法。。

使用BinaryFormatter将对象保存到文件中

BinaryFormatter不写文本;如果要编写文本,请不要使用BinaryFormatter。同样,您现在每次都在编写lines,而不是line。但这都是学术性的:所有这些只是:

File.WriteAllLines(path, lines);

就是这样;这就是执行此操作的全部代码。