将字典的所有内容写入文件

时间:2013-10-19 18:15:51

标签: c# .net file file-io dictionary

我有一个看起来像这样的字典

public Dictionary<string,List<ForwardBarrelRecord>> lexicon = new Dictionary<string, List<ForwardBarrelRecord>>();

ForwardBarrelRecord看起来像这样

public struct ForwardBarrelRecord
{
    public string DocId;
    public int hits { get; set; }
    public List<int> hitLocation;
}

我想将所有内容写入文件前向桶记录中的int列表。因此,当我检索它时,我可以精确重建字典。

到目前为止,我已经编写了代码,但它只将密钥保存在字典中,而不是复制值只是写类路径。到目前为止,我的代码是

using (var file = new System.IO.StreamWriter("myfile.txt"))
        {
            foreach (var entry in pro.lexicon)
            {
                file.WriteLine("[{0} {1}]", entry.Key, entry.Value);
            }
        }

我希望对我的这本词典中的所有内容进行深入复制。

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:1)

如此链接中所述Why isn't there an XML-serializable dictionary in .NET?

  

关于XML序列化的事情是它不仅仅是创建一个字节流。它还涉及创建这个字节流将验证的XML Schema。 XML Schema中没有很好的方法来表示字典。你能做的最好的事情是表明有一个独特的密钥

但是如果你想要一个工作,你可以尝试这个代码我试过,它的工作非常好你应该做的一件事手动是检查密钥总是唯一的 试试这样的事情

 class Program
{        
    static void Main(string[] args)
    {

        List<KeyValuePair<string,List<ForwardBarrelRecord>>>  lexicon   = new List<KeyValuePair<string,List<ForwardBarrelRecord>>>();  
        ForwardBarrelRecord FBR = new ForwardBarrelRecord();  
        FBR.DocId ="12"; 
        FBR.hits= 14;  
        FBR.hitLocation = new List<int>(){12,13,114};
        var lst = new List<ForwardBarrelRecord>() { FBR, FBR };
        KeyValuePair<string,List<ForwardBarrelRecord>> t= new KeyValuePair<string,List<ForwardBarrelRecord>>("Test",lst);
        lexicon.Add(t);            
        XmlSerializer serializer = new XmlSerializer(typeof(List<KeyValuePair<string, List<ForwardBarrelRecord>>>));
        string  fileName= @"D:\test\test.xml";
        Stream stream = new FileStream(fileName,FileMode.Create);
        serializer.Serialize(stream,lexicon);
        stream.Close();            
    }     
}

public struct ForwardBarrelRecord
{
    [XmlElement]
    public string DocId;
    [XmlElement]
    public int hits { get; set; }
    [XmlElement]
    public List<int> hitLocation;
}

} 但如果您想要更强大的解决方案,可以使用此自定义的SortedDictionary http://weblogs.asp.net/pwelter34/archive/2006/05/03/444961.aspx

希望这个帮助