当前,我正在写XML。虽然确实可以写入XML文件,但我只希望在“水果” 标记内写入内容,并保持“ NODE ”下的信息不变。
此外,我希望修改国家/地区代码中的“代码”标签,而不是其外部的代码。
这是XML文件的内容(URL是我必须清理的虚假URL):
<?xml version="1.0" encoding="utf-8"?>
<Native xmlns="URL" version="2.0">
<Header>
<OwnerCode>Bob</OwnerCode>
</Header>
<Body>
<Fruit version="2.0">
<Thing Action="INSERT">
<Name></Name>
<Color></Color>
<Size></Size>
<CountryCode TableName="SQL_Name">
<Code></Code>
</CountryCode>
<Code></Code>
</Thing>
</Fruit>
</Body>
<NODE>
<Name></Name>
<Color></Color>
<Size></Size>
</NODE>
</Native>
这是当前代码:
XDocument xdoc = XDocument.Load(NewFilePath);
foreach (XElement element in xdoc.Descendants())
{
switch (element.Name.LocalName)
{
case "Name":
element.Value = "Apple";
break;
case "Color":
element.Value = "Red";
break;
case "Size":
element.Value = "Big";
break;
}
}
xdoc.Save(NewFilePath);
答案 0 :(得分:1)
首先必须指定所需的父代,然后才能获取后代。您可以使用相同的逻辑来修改Code
标签:
XDocument xdoc = XDocument.Load(NewFilePath);
XNamespace xn = "URL";
foreach (XElement element in xdoc.Descendants(xn+"Fruit").Descendants())
{
switch (element.Name.LocalName)
{
case "Name":
element.Value = "Apple";
break;
case "Color":
element.Value = "Red";
break;
case "Size":
element.Value = "Big";
break;
}
}
foreach(var el in xdoc.Descendants(xn+"Code").Where(x=>x.Parent.Name==xn+"CountryCode"))
{
el.Value="Test";
}
xdoc.Save(NewFilePath);
答案 1 :(得分:0)
与其遍历元素,不如直接对它们进行寻址。
XNamespace ns = "URL";
XElement thing = doc.Element(ns + "Native").Element(ns + "Body").Element(ns + "Fruit").Element(ns +"Thing");
thing.Element(ns + "Name").Value = "Apple";
thing.Element(ns + "Color").Value = "Red";
thing.Element(ns + "Size").Value = "Big";
thing.Element(ns + "CountryCode").Element(ns + "Code").Value = "new-country-code";