我有一个xml文件,如下所示。
<?xml version="1.0" encoding="utf-8"?>
<file:Situattion xmlns:file="test">
<file:Properties>
</file:Situattion>
我想添加子元素文件:使用xDocument.So的字符,我的最终xml将如下所示
<?xml version="1.0" encoding="utf-8"?>
<file:Situattion xmlns:file="test">
<file:Characters>
<file:Character file:ID="File0">
<file:Value>value0</file:Value>
<file:Description>
Description0
</file:Description>
</file:Character>
<file:Character file:ID="File1">
<file:Value>value1</file:Value>
<file:Description>
Description1
</file:Description>
</file:Character>
</file:Characters>
我尝试使用Xdocument类的c#中的代码如下所示。
XNamespace ns = "test";
Document = XDocument.Load(Folderpath + "\\File.test");
if (Document.Descendants(ns + "Characters") != null)
{
Document.Add(new XElement(ns + "Character"));
}
Document.Save(Folderpath + "\\File.test");
在“Document.Add(new XElement(ns + "Character"));
”行,我收到错误:
"This operation would create an incorrectly structured document."
。
如何在“file:Characters
”下添加节点。
答案 0 :(得分:16)
您正尝试将额外的file:Character
元素直接添加到根目录中。您不希望这样做 - 您希望将其添加到file:Characters
元素下,大概是。
另请注意,Descendants()
永远不会返回null - 如果没有匹配的元素,它将返回空序列。所以你想要:
var ns = "test";
var file = Path.Combine(folderPath, "File.test");
var doc = XDocument.Load(file);
// Or var characters = document.Root.Element(ns + "Characters")
var characters = document.Descendants(ns + "Characters").FirstOrDefault();
if (characters != null)
{
characters.Add(new XElement(ns + "Character");
doc.Save(file);
}
请注意,我使用了更常规的命名Path.Combine
,并且还移动了Save
调用,这样您只有在实际对文档进行更改时才会保存。
答案 1 :(得分:5)
Document.Root.Element("Characters").Add(new XElement("Character", new XAttribute("ID", "File0"), new XElement("Value", "value0"), new XElement("Description")),
new XElement("Character", new XAttribute("ID", "File1"), new XElement("Value", "value1"), new XElement("Description")));
注意:为简洁起见,我没有包含命名空间。你必须添加它们。