xml learning (7) .net obtains the maximum value of xml node or attribute

黄舟
Release: 2017-02-23 14:40:26
Original
2056 people have browsed it

上一节中,我们介绍了一些xml的xpath属性和函数

下面我们来介绍两个比较特殊的使用:

1.获取相同节点的最大值

2.获取相同节点某属性最大值

xmlName为“内容”

1.获取相同节点的最大值


     string fileName = HttpContext.Current.Request.PhysicalApplicationPath + "\\Xml\\" + xmlName + ".xml";//xml的物理路径
            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.Load(fileName);
      
            XmlNode fdfdf = xmlDoc.SelectSingleNode("//rows[not(.<//rows)]");
Copy after login

2.获取相同节点某属性最大值

   string fileName = HttpContext.Current.Request.PhysicalApplicationPath + "\\Xml\\" + xmlName + ".xml";//xml的物理路径
            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.Load(fileName);
            XmlNode maxNodejj = xmlDoc.SelectSingleNode("//rows/@ID[not(.<//rows/@ID)]");
Copy after login


下面是内容.xml

<?xml version="1.0" encoding="utf-8"?>
<config>
  <Header ID="ID" class="class" class_name="class_name" year="year" school="school" count="count">2
  </Header>
  <rows ID="01" class="一五班" class_name="实验班" year="2013" school="三峡高级中学" count="30">4
  </rows>
  <rows ID="02" class="一六班" class_name="奥数班" year="2013" school="三峡高级中学" count="25">9
  </rows>
  <rows ID="03" class="一七班" class_name="阳光班" year="2013" school="三峡高级中学" count="69">8
  </rows>
</config>
Copy after login

 以上就是xml学习(7) .net 获取xml节点或者属性最大值的内容,更多相关内容请关注PHP中文网(m.sbmmt.com)! 




source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!