0

我正在构建一个 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 时,节点获取 null 的值。我正在使用阅读器获取根节点的第一个子节点,然后使用 XMLDocument 从该 xml 创建一个。由于它是 Windows 8,显然,我不能使用 XPathSelectElements 方法,这是我想不到的唯一方法。有没有办法使用这个或任何其他逻辑来做到这一点?

预先感谢您的回答。

[更新]

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

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

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

4

1 回答 1

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();
}
于 2013-10-14T07:41:18.277 回答