码迷,mamicode.com
首页 > Windows程序 > 详细

C#XML格式字符串取节点数据

时间:2018-10-30 17:21:18      阅读:357      评论:0      收藏:0      [点我收藏+]

标签:XML   int   参数   pat   val   document   ati   字符串   stat   

XML格式的字符串:

<xml><return_code><![CDATA[{0}]]></return_code><return_msg><![CDATA[{1}]]></return_msg></xml>

就像上面例子格式的字符串,如果参数0中放入数据SUCCESS,如何取得SUCCESS节点数据

<[CDATA[{0}]]>这个节点一般都会存取敏感数据

public static string Deserialize(string xml)
{
            XmlDocument doc = new XmlDocument();
            doc.LoadXml(xml);
            string xpathChiefComplaint = "/xml/return_code";
            XmlNode xnChiefComplaint = doc.SelectSingleNode(xpathChiefComplaint);
            string nodeValue = xnChiefComplaint.InnerText;
            return nodeValue;
}

如上代码方法就能取到节点<[CDATA[{0}]]>中的SUCCESS数据

C#XML格式字符串取节点数据

标签:XML   int   参数   pat   val   document   ati   字符串   stat   

原文地址:https://www.cnblogs.com/ButterflyEffect/p/9876910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!