使用xpath和xdocument选择xml文件部分 - C#/ Win8

时间:2013-10-11 10:35:40

标签: c# xml xpath windows-8

我正在构建一个Windows 8应用程序,我需要从一个大的xml文档中提取整个XML节点及其子节点作为字符串,到目前为止执行此操作的方法如下所示:

    public string GetNodeContent(string path)
    {
        XmlReaderSettings settings = new XmlReaderSettings();
        settings.IgnoreWhitespace = true;
        settings.ConformanceLevel = ConformanceLevel.Auto;
        settings.IgnoreComments = true;
        using (XmlReader reader = XmlReader.Create("something.xml", settings))
        {
            reader.MoveToContent();
            reader.Read();

            XmlDocument doc = new XmlDocument();
            doc.LoadXml(reader.ReadOuterXml());
            IXmlNode node = doc.SelectSingleNode(path);

            return node.InnerText;

        }
    }

当我传递任何形式的xpath时,node获取null值。我正在使用阅读器获取根节点的第一个子节点,然后使用XMLDocument从该xml创建一个。因为它是Windows 8,显然,我不能使用XPathSelectElements方法,这是我想不到的唯一方法。有没有办法用这个或任何其他逻辑来做到这一点?

提前感谢您的回答。

[UPDATE]

假设XML具有以下一般形式:

<nodeone attributes...>
    <nodetwo attributes...>
        <nodethree attributes... />
        <nodethree attributes... />
        <nodethree attributes... />
    </nodetwo>
</nodeone >

当我传递“/ nodeone / nodetwo”或“// nodetwo”时,我希望以xml字符串的形式得到nodetwo及其所有子节点

1 个答案:

答案 0 :(得分:0)

我已经提出了这个解决方案,整个方法开始时都是错误的。有问题的部分是这个代码的事实

reader.MoveToContent();
reader.Read();

自动忽略命名空间,因为它会跳过根标记。这是新的工作代码:

public static async Task<string> ReadFileTest(string xpath)
{
    StorageFolder folder = await Package.Current.InstalledLocation.GetFolderAsync("NameOfFolderWithXML");
    StorageFile xmlFile = await folder.GetFileAsync("filename.xml");
    XmlDocument xmldoc = await XmlDocument.LoadFromFileAsync(xmlFile);

    var nodes = doc.SelectNodes(xpath);
    XmlElement element = (XmlElement)nodes[0];

    return element.GetXml();
}