XDocument.Save方法中的问题

时间:2013-07-24 05:29:57

标签: c# xml windows-phone-7 windows-phone-8 linq-to-xml

我正在尝试在现有的XMl文件中插入数据。我有以下代码。

        string file = MapPath("~/XMLFile1.xml");
        XDocument doc;
        //Verify whether a file is exists or not
        if (!System.IO.File.Exists(file))
        {
            doc = new XDocument(new XDeclaration("1.0", "UTF-8", "yes"),
                new System.Xml.Linq.XElement("Contacts"));
        }
        else
        {
            doc = XDocument.Load(file);
        }
        foreach (var c in MyContactsLst)
        {
            //var contactsElement = new XElement("Contacts",
            var contactsElement = new XElement("Contact",
                                  new XElement("Name", c.FirstOrDefault().DisplayName),
                                  new XElement("PhoneNumber", c.FirstOrDefault().PhoneNumber.ToString()),
                                  new XElement("Email", "abc@abc.com"));
            doc.Root.Add(contactsElement);
            doc.Save(file);
        }

第一个问题是第一行代码,即MapPath("~/XMLFile1.xml");它给了我一个错误

  

当前上下文中不存在名称“MapPath”

第二个问题是doc.Save(file);它给了我一个错误

  

'System.Xml.Linq.XDocument.Save(System.IO.Stream)'的最佳重载方法匹配有一些无效的参数

我已经提到了这个问题How to insert data into an existing xml file in asp.net?

我正在学习 XML 。那么,我该如何解决这个问题?

2 个答案:

答案 0 :(得分:3)

当前上下文中不存在MapPath的原因是因为它是HttpServerUtility类的方法,据我所知,它在Windows Phone上不受支持。

尝试像这样加载XDocument:

XDocument xdocument = XDocument.Load("XMLFile1.xml");

编辑:您在保存文档时出错。以下是相关主题的答案:

using (var storage = IsolatedStorageFile.GetUserStoreForApplication())
{
     using (Stream stream = storage.CreateFile("data.xml"))
     {
         doc.Save(stream);
     }
}

答案 1 :(得分:0)

添加Kajzer的答案,这是另一种可能更容易掌握并用于保存XDocument的替代方案:

string path = "[some path]";

using (Stream stream = File.Create(path))
{
    doc.Save(stream);
}

只有一个using语句,您只需要System.IO类,因为它提供了StreamFile类供您使用 - 使其成为最直接,最容易理解的解决方案。