C#:快速读取XML节点内容

xml内容如下: 

 
  
          200
  
  
  
  
                  123456
  
 
                 5
 
 
                 2000-01-01 00:00:00
 
 
                 2000-01-01 00:00:00
 
 
                 500
 
 
 
 

 

加载这个xml文件:

XMLDocument xmlDoc = new XmlDocument();

然后可以通过xmlDoc .Load(...)或xmlDoc.LoadXml(...)方法加载XML文档。

加载完这个xml文档后,我们可以通过下面的方法快速读取节点内的内容。

快速获取xml节点内容的方法为:

1 /// 
 2     /// 获取XML结点值
 3     /// 
 4     /// xml,如:XmlNodeList[0].InnerXml
 5     /// 结点,如:time这个结点
 6     /// 
 7     public static string get_Str_Nodes(string Str, string xPath)
 8     {
 9         int x = 0, y = 0, z = 0;
10         x = Str.IndexOf("<" + xPath + ">");
11         y = Str.IndexOf("");
12         z = xPath.Length + 2;
13         if (y > x)
14         {
15             return Str.Substring(x + z, y - x - z).Trim();
16         }
17         else
18         {
19             return "";
20         }
21     }

 

1 XmlNodeList couponNodes = CouponXml.SelectNodes("//coupon"); 
 2               
 3             if (couponNodes != null)                
 4             {                    
 5                 foreach(XmlNode couponNode in couponNodes)                    
 6                 {                        
 7                     string coupon_Id = get_Str_Nodes(couponNode.InnerXml, "coupon_Id");                        
 8                     string denominations = get_Str_Nodes(couponNode.InnerXml, "denominations");                     
 9                 }                
10             }

 可以把获取节点值的方法放在共通类里面

http://www.cnblogs.com/willpan/archive/2011/08/03/xml.html

你可能感兴趣的:(♥VB与数据库学习♥,C#快速读取XML节点内容)