我正在构建一个 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字符串形式