c# – 如何从xml文件读取单节点值

前端之家收集整理的这篇文章主要介绍了c# – 如何从xml文件读取单节点值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我试图从xml获取值,但它显示节点null.

这是我的xml文件.

<?xml version="1.0" encoding="utf-8"?>
<result xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.cfhdocmail.com/TestAPI2/Result.xsd https://www.cfhdocmail.com/TestAPI2/Result.xsd" xmlns="https://www.cfhdocmail.com/TestAPI2/Result.xsd">
  <data>
    <key>MailingGUID</key>
    <value>0aa2b2e3-7afa-4002-ab2f-9eb4cbe33ae7</value>
  </data>
  <data>
    <key>OrderRef</key>
    <value>52186</value>
  </data>
</result>

我想得到“MailingGUID”值.

这是我试过的代码

private void readXML()
    {
        XmlDocument xml = new XmlDocument();
        // You'll need to put the correct path to your xml file here
        xml.Load(Server.MapPath("~/XmlFile11.xml"));

        // Select a specific node
        XmlNode node = xml.SelectSingleNode("result/data/value");
        // Get its value
        string name = node.InnerText;


    }

请告诉我如何可以获得MailingGUID值.

谢谢

解决方法

更新:
我认为你的模式可能会有问题,我删除了对他们的引用,你的代码工作正常.我试过这个:
const string str = "<?xml version=\"1.0\" encoding=\"utf-8\"?><result><data><key>MailingGUID</key><value>0aa2b2e3-7afa-4002-ab2f-9eb4cbe33ae7</value></data><data><key>OrderRef</key><value>52186</value></data></result>";
var xml = new XmlDocument();
xml.LoadXml(str);
xml.DocumentElement.SelectSingleNode("/result/data/value").InnerText
原文链接:https://www.f2er.com/csharp/95527.html

猜你在找的C#相关文章