如何在XML树中加载和添加元素

时间:2015-12-04 18:18:27

标签: c# xml linq linq-to-xml

我花了最近几天在Stack Overflow,博客和MSDN文章上阅读。我显然缺乏对命名空间,Linq和XML如何工作以及需要帮助的基本了解。如果我有更多的头发可以拉出来,现在就在我手里: - )

使用C#和Linq to XML,我打开以下opf.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<package version="2.0" xmlns="http://www.idpf.org/2007/opf" unique-identifier="">
  <metadata xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:opf="http://www.idpf.org/2007/opf">
  </metadata>
  <manifest></manifest>
  <spine toc="ncx"></spine>
  <guide></guide>
</package>

我使用以下代码打开此文件:

File.Copy(_opfFile, opfFile, true);
XDocument opfDoc = XDocument.Load(opfFile);

不幸的是,这是我完全迷失的地方。我需要做的是在每个主要节点下生成元素。对于metadata节点,我需要创建具有命名空间和非命名空间的元素。对于文件的其余部分,我只需要添加不使用命名空间的常规节点。

以下是我想要实现的输出的示例。我相信如果您可以帮助我使用metdatamanifest节点,我可以弄清楚如何更新其余节点。

<?xml version="1.0" encoding="UTF-8"?>
<package xmlns:ibooks="http://www.idpf.org/2007/opf" unique-identifier="BookId" version="3.0" prefix="ibooks: http://www.idpf.org/2007/opf" xmlns="http://www.idpf.org/2007/opf">
    <metadata xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:opf="http://www.idpf.org/2007/opf">
        <dc:title>Untitled</dc:title>
        <meta refines="#contributor" property="role" scheme="marc:relators">bkp</meta>
    </metadata>
    <manifest>
        <item id="toc" href="toc.xhtml" media-type="application/xhtml+xml" properties="nav"/>
    </manifest>
    <spine toc="ncx"></spine>
    <guide></guide>
</package>

请您提供一些基本的C#/ Linq代码:

  1. 查找并添加metadata项,其中要求的名称为(&ns;);&#34; dc&#34;如上例所示。
  2. 添加一个不使用命名空间的metadata项,如上例所示。
  3. 添加新的manifest项,如上例所示。
  4. 我会分享我编写的代码,但它遍布整个地方,我有很多注释代码。我可以告诉你的是我经常会出现空异常错误。

    提前谢谢。

1 个答案:

答案 0 :(得分:2)

当反向工程使用多个命名空间的XML时,我发现以下调试实用程序很有用:

public static class XObjectExtensions
{
    public static IEnumerable<string> DumpXmlAttributeNames(this XObject obj)
    {
        if (obj is XAttribute)
            return new[] { ((XAttribute)obj).Name.ToString() };
        else if (obj is XElement)
        {
            return ((XElement)obj).Attributes().Select(a => a.Name.ToString());
        }
        return Enumerable.Empty<string>();
    }

    public static IEnumerable<string> DumpXmlElementNames(this XElement root)
    {
        if (root == null)
            return Enumerable.Empty<string>();
        return root.DescendantsAndSelf().Select(el => string.Format("{0} \"{1}\"; Attribute names: {2}",
            new string(' ', el.AncestorsAndSelf().Count()), el.Name.ToString(), String.Join(", ", el.DumpXmlAttributeNames().Select(s => "\"" + s + "\""))));
    }

    public static IEnumerable<string> DumpXmlElementNames(this XDocument root)
    {
        if (root == null)
            return Enumerable.Empty<string>();
        return root.Root.DumpXmlElementNames();
    }
}

使用它们,可以很容易地看到所需XML的元素和属性的正确名称空间:

  "{http://www.idpf.org/2007/opf}package"; Attribute names: "{http://www.w3.org/2000/xmlns/}ibooks", "unique-identifier", "version", "prefix", "xmlns"
   "{http://www.idpf.org/2007/opf}metadata"; Attribute names: "{http://www.w3.org/2000/xmlns/}dc", "{http://www.w3.org/2000/xmlns/}opf"
    "{http://purl.org/dc/elements/1.1/}title"; Attribute names: 
    "{http://www.idpf.org/2007/opf}meta"; Attribute names: "refines", "property", "scheme"
   "{http://www.idpf.org/2007/opf}manifest"; Attribute names: 
    "{http://www.idpf.org/2007/opf}item"; Attribute names: "id", "href", "media-type", "properties"
   "{http://www.idpf.org/2007/opf}spine"; Attribute names: "toc"
   "{http://www.idpf.org/2007/opf}guide"; Attribute names: 

因此,您需要在"title"命名空间中添加"http://purl.org/dc/elements/1.1/"元素,在"http://www.idpf.org/2007/opf"命名空间中添加其他元素:

        var dc = (XNamespace)"http://purl.org/dc/elements/1.1/";
        var opf = (XNamespace)"http://www.idpf.org/2007/opf";

        var meta = opfDoc.Root.Element(opf + "metadata");
        meta.Add(new XElement(dc + "title", "Untitled"));
        meta.Add(new XElement(opf + "meta", 
            new XAttribute("refines", "#contributor"), 
            new XAttribute("property", "role"), 
            new XAttribute("scheme", "marc:relators"), "bkp"));

        var manifest = opfDoc.Root.Element(opf + "manifest");
        manifest.Add(new XElement(opf + "item", 
            new XAttribute("id", "toc"), 
            new XAttribute("href", "toc.xhtml"), 
            new XAttribute("media-type", "application/xhtml+xml"), 
            new XAttribute("properties", "nav")));