【发布时间】:2014-04-27 17:24:08
【问题描述】:
我正在尝试将包含对象的文件反序列化为对象列表 但对于某些列表如何仅用于对象 这是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
namespace Test
{
class Program
{
static void Main(string[] args)
{
user lastuser = new user("First name", "Last name", "Username", "Password");
FileStream ToStream = new FileStream("UsersDB.txt", FileMode.OpenOrCreate);
BinaryFormatter Ser = new BinaryFormatter();
List<user> ToUsers = new List<user>();
try
{
ToUsers = (List<user>)Ser.Deserialize(ToStream); // this is to deserialize everything in the file to the list
ToUsers.Add(lastuser); // here we are adding our object (which is lastuser) to the list
Ser.Serialize(ToStream, ToUsers); // here we are serializing the list back to the file
}
catch (System.Runtime.Serialization.SerializationException)
{//this is to catch the exception if the file was empty and there is nth to deserialize to the list
ToUsers.Add(lastuser);
Ser.Serialize(ToStream, ToUsers);
}
ToStream.Close();
Console.WriteLine("ToUsers objects : " + ToUsers.Count());
// this is to see how many objects does the list have
}
}
}
这是我要序列化的类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization;
namespace Test
{
[Serializable]
class user
{
private string Fname, Lname, Username, Password;
public user()
{ }
public user(string Fname, string Lname, string Username, string Password)
{
this.Fname = Fname;
this.Lname = Lname;
this.Username = Username;
this.Password = Password;
}
public string GetUsername()
{
return Username;
}
}
}
当我运行它时,我得到列表的计数是 1。
再次运行它,我明白了 2。
运行 1000 次,你会得到 2 次。
我知道有问题所以请帮助我。
【问题讨论】:
标签: c# list serialization deserialization