将数据从WP8添加到XML文件

时间:2015-02-17 08:22:01

标签: c# xml windows-phone-8

我正在尝试将从列表选择器中获取的数据添加到xml中。我不知道错误在哪里因为我是新手。

C#代码

 using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
        {
           var isoFileStream = new IsolatedStorageFileStream(@"D:\Backup\task\Project\
     Project\FinalDatas.xml", FileMode.OpenOrCreate, FileAccess.ReadWrite, store); // I get an exception here
            var xDoc = XDocument.Load(isoFileStream);
            isoFileStream.Close();


          var contactsElement =  
                              new XElement("Noofppl",
                             new XElement("ppl",
                        new XElement("Adults", ListAdults.SelectedItem.ToString()),
                        new XElement("children", ListChildren.SelectedItem.ToString())));


            //    IsolatedStorageFileStream location = new IsolatedStorageFileStream(ListAdults.SelectedItem.ToString() + ".item", System.IO.FileMode.Create, storage);
       xDoc.Root.Add(contactsElement);
    xDoc.Save(isoFileStream);
    isoFileStream.Close();
        }

我在同一个项目上有我的xml文件,代码就像

     <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
     <Noofppl>
      <ppl>
       <Adults>

       </Adults>
        <children>

        </children>
        </ppl>
        </Noofppl>

1 个答案:

答案 0 :(得分:0)

尝试添加XDocument而不添加IsolatedStorageFileStream

XDocument xDoc = XDocument.Load(@"D:\Backup\task\Project\
 Project\FinalDatas.xml);

如果可能,请查看this&amp; sample