10

我是.net 初学者。我需要向 xml 文件中添加一些数据

xml文件是:

<stock>    --- 1st level  /* i dont want to create this because this exists */ 
  <items>  --  2nd level
    <productname>Toothpaste</productname>
    <brandname>Colgate</brandname>
    <quantity>12</quantity>
    <price>10</price>
  </items>
  <items>
    <productname>Toothpaste</productname>
    <brandname>Pepsodent</brandname>
    <quantity>20</quantity>
    <price>12</price>
  </items>
</stock>

我需要添加

productname --> Toothpaste
brandname   --> CloseUp
quantity    --> 16
price       --> 15

到他们各自的标签。我现在面临的问题是我需要深入两层才能写入它们各自的标签,我不知道该怎么做。

我尝试了以下代码:(不工作

XDocument doc = new XDocument(      
                  new XElement("stock",  /* how to go inside existing "stock"? */
                     new XElement("items", 
                          new XElement("productname", "Toothpaste"),
                          new XElement("brandname", "CloseUp"),
                          new XElement("quantity","16"),
                          new XElement("price","15"))));

必须有其他方法来实现这一点,我不知道。
也欢迎与 linq 无关的答案。但更喜欢 linq,因为我在我的项目中实现了完整的 linq。

请帮助
提前致谢。

4

1 回答 1

23

假设您有原始文件:

 var doc = XDocument.Load(...);

然后创建一个新元素(不是文档)

  //XDocument doc = new XDocument(      
  //  new XElement("stock",  /* how to go inside existing "stock"? */
   var newElement =  new XElement("items", 
                      new XElement("productname", "Toothpaste"),
                      new XElement("brandname", "CloseUp"),
                      new XElement("quantity","16"),
                      new XElement("price","15"));

然后插入它:

  doc.Element("stock").Add(newElement);

  doc.Save(....);
于 2012-10-08T14:18:43.293 回答