我知道有很多关于这个话题的讨论,比如这个:
BinaryFormatter and Deserialization Complex objects
但这看起来非常复杂。我正在寻找的是一种更简单的方法来将一个通用的对象列表序列化和反序列化到一个文件中。这就是我尝试过的:
public void SaveFile(string fileName)
{
List<object> objects = new List<object>();
// Add all tree nodes
objects.Add(treeView.Nodes.Cast<TreeNode>().ToList());
// Add dictionary (Type: Dictionary<int, Tuple<List<string>, List<string>>>)
objects.Add(dictionary);
using(Stream file = File.Open(fileName, FileMode.Create))
{
BinaryFormatter bf = new BinaryFormatter();
bf.Serialize(file, objects);
}
}
public void LoadFile(string fileName)
{
ClearAll();
using(Stream file = File.Open(fileName, FileMode.Open))
{
BinaryFormatter bf = new BinaryFormatter();
object obj = bf.Deserialize(file);
// Error: ArgumentNullException in System.Core.dll
TreeNode[] nodeList = (obj as IEnumerable<TreeNode>).ToArray();
treeView.Nodes.AddRange(nodeList);
dictionary = obj as Dictionary<int, Tuple<List<string>, List<string>>>;
}
}
序列化有效,但反序列化失败并带有ArgumentNullException。有谁知道如何拉出字典和树节点并将它们抛回,可能采用不同的方法,但又好又简单?谢谢!
答案 0 :(得分:1)
您已经序列化了一个对象列表,其中第一个项目是节点列表,第二个项目是字典。因此,在反序列化时,您将获得相同的对象。
反序列化的结果将是List<object>
,其中第一个元素是List<TreeNode>
,第二个元素是Dictionary<int, Tuple<List<string>, List<string>>>
这样的事情:
public static void LoadFile(byte[] bytes)
{
ClearAll();
using(Stream file = File.Open(fileName, FileMode.Open))
{
BinaryFormatter bf = new BinaryFormatter();
object obj = bf.Deserialize(file);
var objects = obj as List<object>;
//you may want to run some checks (objects is not null and contains 2 elements for example)
var nodes = objects[0] as List<TreeNode>;
var dictionary = objects[1] as Dictionary<int, Tuple<List<string>,List<string>>>;
//use nodes and dictionary
}
}
您可以尝试on this fiddle。