博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
XmlDocument.LoadXml和Load的区别
阅读量:6323 次
发布时间:2019-06-22

本文共 1656 字,大约阅读时间需要 5 分钟。

 

LoadXml:从指定的字符串加载 XML 文档。

eg:doc.LoadXml("
aa
");

public void LoadXmlTest() {            // Create the XmlDocument.            XmlDocument doc = new XmlDocument();            doc.LoadXml("
wrench
"); // Add a price element. XmlElement newElem = doc.CreateElement("price"); newElem.InnerText = "10.95"; doc.DocumentElement.AppendChild(newElem); XmlNode xmlNode = doc.SelectSingleNode("/item/name"); Console.WriteLine(xmlNode.InnerText); xmlNode = doc.SelectSingleNode("/item/price"); Console.WriteLine(xmlNode.InnerText); // Save the document to a file and auto-indent the output. XmlTextWriter writer = new XmlTextWriter("data.xml", null); writer.Formatting = Formatting.Indented; doc.Save(writer); }
Load:加载指定的 XML 数据

从指定的流加载 XML 文档。

从指定的 URL 加载 XML 文档。
从指定的 加载 XML 文档。
从指定的 加载 XML 文档。

public void getInfo(string fileName)        {            //创建XML的根节点           // CreateXMLElement();            string fileFullPath = Application.StartupPath + "\\" + fileName;            Console.WriteLine(fileFullPath);            XmlDocument doc = new XmlDocument();            doc.Load(fileFullPath);            XmlNodeList xmlNodeList = doc.SelectNodes("/root/business/item");            foreach (XmlNode xmlNode in xmlNodeList)            {                Console.WriteLine(string.Format("{0}\t{1} \n{2}", xmlNode.Attributes["BusinessName"].Value, xmlNode.Attributes["DistinctionKey"].Value, xmlNode.Attributes["Url"].Value));            }            Console.ReadLine();        }
 
 
 
 
 

转载地址:http://enlaa.baihongyu.com/

你可能感兴趣的文章
mongodb 分组查询
查看>>
PHP 优化详解
查看>>
简单粗暴,微生物生态研究中常用数据库简介--转载
查看>>
小贝_mysql 存储过程
查看>>
悲观锁和乐观锁
查看>>
一对一查询(2)
查看>>
UVa 11475 - Extend to Palindrome
查看>>
SEO三种职位类型:编辑型SEO、技术型SEO、营销型SEO详解
查看>>
Implementing HTTPS Everywhere in ASP.Net MVC application.
查看>>
POI中不推荐的方法与其替代的方法
查看>>
Ajax跨域之ContentType为application/json请求失败的问题
查看>>
CentOS 6.9设置IP、网关、DNS
查看>>
mongo12---手动预先分片
查看>>
Linux下设置和查看环境变量
查看>>
vue 销毁组件
查看>>
嵌入式系列
查看>>
LeetCode: Binary Tree Postorder Traversal 解题报告
查看>>
一个自动生成html的类
查看>>
Tomcat:Exception loading sessions from persistent storage
查看>>
servlets的表单提交响应
查看>>