我使用this信息将列表转换为带有二进制序列化的.txt。现在我想加载该文件,并将其再次放入我的列表中。
这是我用二进制序列化将列表转换为.txt的代码:
public void Save(string fileName)
{
FileStream fs = new FileStream(@"C:\" + fileName + ".txt", FileMode.Create);
BinaryFormatter bf = new BinaryFormatter();
bf.Serialize(fs, list);
fs.Close();
}
所以我的问题是;如何将这个二进制文件转换回列表?
答案 0 :(得分:0)
你可以这样做:
//Serialize: pass your object to this method to serialize it
public static void Serialize(object value, string path)
{
BinaryFormatter formatter = new BinaryFormatter();
using (Stream fStream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None))
{
formatter.Serialize(fStream, value);
}
}
//Deserialize: Here is what you are looking for
public static object Deserialize(string path)
{
if (!System.IO.File.Exists(path)) { throw new NotImplementedException(); }
BinaryFormatter formatter = new BinaryFormatter();
using (Stream fStream = File.OpenRead(path))
{
return formatter.Deserialize(fStream);
}
}
然后使用这些方法:
string path = @"C:\" + fileName + ".txt";
Serialize(list, path);
var deserializedList = Deserialize(path);
答案 1 :(得分:0)
谢谢@Hossein Narimani Rad,我用了你的答案并稍微改了一下(所以我更了解它)现在它有用了。
我的binair序列化方法(保存)仍然是一样的。 这是我的binair反序列化方法(加载):
public void Load(string fileName)
{
FileStream fs2 = new FileStream(fileName, FileMode.Open);
BinaryFormatter binformat = new BinaryFormatter();
if (fs2.Length == 0)
{
MessageBox.Show("List is empty");
}
else
{
LoadedList = (List<Object>)binformat.Deserialize(fs2);
fs2.Close();
List.Clear();
MessageBox.Show(Convert.ToString(LoadedList));
List.AddRange(LoadedList);
}
我知道我现在没有例外,但我这样理解得更好。 我还添加了一些代码,用我的List用新的LoadedList填充我的列表框。