删除XML元素节点

Jel*_*tra 2 c# xml windows-phone-8

我想使用C#删除本地xml文件中的an Element Node和all Child Elements.

这是我的xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<data>
  <cocktail name="43 Hedonism" id="14">
    <name>43 Hedonism</name>
    <id>14</id>
  </cocktail>
  <cocktail name="B-52" id="4">
    <name>B-52</name>
    <id>4</id>
  </cocktail>
</data>
Run Code Online (Sandbox Code Playgroud)

我想删除一个鸡尾酒元素,其中id-attribute为4,存储在变量中.如何告诉我的应用程序只需删除id为4的鸡尾酒元素? XmlNode.RemoveChild由于Windows Phone 8中不支持/不可用,因此无法正常工作.我编写了以下代码,但我仍然坚持在哪里写出要删除的元素的id.

using System;
using System.IO;
using System.IO.IsolatedStorage;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Resources;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using XmlLocalDelete1.Resources;
using System.Xml;
using System.Xml.Linq;
using System.Text;

namespace XmlLocalDelete1
{
    public partial class MainPage : PhoneApplicationPage
    {
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            // Sample code to localize the ApplicationBar
            //BuildLocalizedApplicationBar();
        }

        private string id = "4";

        protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
        {
            try
            {
                tb1.Text = "";
                // copy the xml file to isolated storage
                using (IsolatedStorageFile file = IsolatedStorageFile.GetUserStoreForApplication())
                {
                    if (!file.FileExists("bar.xml"))
                    {
                        StreamResourceInfo sr_en = Application.GetResourceStream(new Uri("Resources\\bar.xml", UriKind.Relative));
                        using (BinaryReader br_en = new BinaryReader(sr_en.Stream))
                        {
                            byte[] data = br_en.ReadBytes((int)sr_en.Stream.Length);
                            //Write the file.
                            using (BinaryWriter bw = new BinaryWriter(file.CreateFile("bar.xml")))
                            {
                                bw.Write(data);
                                bw.Close();
                            }
                        }
                    }

                    // work with file at isolatedstorage
                    using (IsolatedStorageFileStream stream = new IsolatedStorageFileStream("bar.xml", FileMode.Open, file))
                    {
                        XDocument doc = XDocument.Load(stream, LoadOptions.None);

                        // delete node
                        XElement deleteThis = doc.Element("cocktail");
                        deleteThis.Remove();
                    }

                    //  Write remaining Xml to textblock

                    using (IsolatedStorageFileStream stream = new IsolatedStorageFileStream("bar.xml", FileMode.Open, file))
                    {
                        //  Load the XML file
                        XmlReader reader = XmlReader.Create(stream);

                        while (reader.Read())
                        {
                            switch (reader.NodeType)
                            {
                                case XmlNodeType.Element: // Het knooppunt is een element.
                                    //tb1.Text = tb1.Text + "<" + reader.Name;
                                    while (reader.MoveToNextAttribute()) // Attributen lezen.
                                        tb1.Text = tb1.Text + " " + reader.Name + "='" + reader.Value + "'";
                                    //tb1.Text = tb1.Text + ">";
                                    break;
                                case XmlNodeType.Text: //De tekst in elk element weergeven.
                                    //tb1.Text = tb1.Text + reader.Value + "\r\n";
                                    Console.WriteLine(reader.Value);
                                    break;
                                case XmlNodeType.EndElement: //Het einde van het element weergeven.
                                    Console.Write("</" + reader.Name);
                                    Console.WriteLine(">");
                                    break;
                            }
                        }

                        reader.Close();
                    }
                }
            }
            catch (Exception myExc)
            {
                Console.WriteLine(myExc.Message);
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

L.B*_*L.B 6

我想删除id属性为4的鸡尾酒元素,

var xDoc = XDocument.Load(filename); //or XDocument.Load(stream);
xDoc.Descendants("cocktail").First(c => c.Attribute("id").Value == "4").Remove();
string newXml = xDoc.ToString();
Run Code Online (Sandbox Code Playgroud)

或者使用XPATH

xDoc.XPathSelectElement("//cocktail[@id='4']").Remove();
Run Code Online (Sandbox Code Playgroud)