首页 | 互联网 | IT动态 | IT培训 | Cisco | Windows | Linux | Java | .Net | Oracle | 软件测试 | C/C++ | 嵌入式开发 | 存储世界 | 服务器
网络设备 | IDC | 安全 | 求职招聘 | 数字网校 | 笔记本电脑 | 北大青鸟 | 技术专题 | 电子书下载 | 教学视频 | 源码下载 | 搜索 | 博客 | 论坛
中国IT实验室Dotnet频道
中国IT教育
Google
首页 ASP.NET  C#  XML/WebService ADO.NET VC.NET VB.NET .NET 资讯动态 专题 RSS订阅 讨论 下载
您现在的位置: 中国IT实验室 >> Dotnet >> XMLWeb >> 正文

创建、查询、修改带名称空间的XML文件

     XML的应用越来越广泛了,如Vista、Flex编程都将使用 XML,正确掌握XML的各种操作,对提高编程效率至关重要。下面就是一个综合处理带名称空间的XML的例子。
  
  C#
  
  string w3NameSpace = "http://www.w3.org/2000/xmlns/";
  System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
  
  //创建根节点
  System.Xml.XmlNode root = doc.CreateNode(System.Xml.XmlNodeType.Element, "w", "wordDocument", "http://schemas.microsoft.com/office/word/2003/2/wordml");
  System.Xml.XmlAttribute xa;
  xa = doc.CreateAttribute("xmlns", "v", w3NameSpace);
  xa.Value = "urn:schemas-microsoft-com:vml";
  root.Attributes.Append(xa);
  
  //为节点添加属性
  xa = doc.CreateAttribute("xmlns", "w10", w3NameSpace);
  xa.Value = "urn:schemas-microsoft-com:office:word";
  root.Attributes.Append(xa);
  
  xa = doc.CreateAttribute("xmlns", "SL", w3NameSpace);
  xa.Value = "http://schemas.microsoft.com/schemaLibrary/2003/2/core";
  root.Attributes.Append(xa);
  
  xa = doc.CreateAttribute("xmlns", "aml", w3NameSpace);
  xa.Value = "http://schemas.microsoft.com/aml/2001/core";
  root.Attributes.Append(xa);
  
  xa = doc.CreateAttribute("xmlns", "wx", w3NameSpace);
  xa.Value = "http://schemas.microsoft.com/office/word/2003/2/auxHint";
  root.Attributes.Append(xa);
  
  xa = doc.CreateAttribute("xmlns", "o", w3NameSpace);
  xa.Value = "urn:schemas-microsoft-com:office:office";
  root.Attributes.Append(xa);
  
  xa = doc.CreateAttribute("xmlns", "dt", w3NameSpace);
  xa.Value = "uuid:C2F41010-65B3-11d1-A29F-00AA00C14882";
  root.Attributes.Append(xa);
  
  xa = doc.CreateAttribute("xmlns", "space", w3NameSpace);
  xa.Value = "preserve";
  root.Attributes.Append(xa);
  
  //为节点增加值
  System.Xml.XmlNode body = doc.CreateNode(System.Xml.XmlNodeType.Element, "v", "body", "urn:schemas-microsoft-com:vml");
  System.Xml.XmlNode childNode = doc.CreateNode(System.Xml.XmlNodeType.Element, "o", "t", "urn:schemas-microsoft-com:office:office");
  childNode.InnerText = "欢迎光临【孟宪会之精彩世界】";
  
  //添加到内存树中
  body.AppendChild(childNode);
  root.AppendChild(body);
  doc.AppendChild(root);
  
  //添加节点声明
  System.Xml.XmlDeclaration xd = doc.CreateXmlDeclaration("1.0", "UTF-8", "yes");
  doc.InsertBefore(xd, doc.DocumentElement);
  
  //添加处理指令
  System.Xml.XmlProcessingInstruction spi = doc.CreateProcessingInstruction("mso-application", "progid=\"Word.Document\"");
  doc.InsertBefore(spi, doc.DocumentElement);
  
  //查询节点
  System.Xml.XmlNamespaceManager nsmanager = new System.Xml.XmlNamespaceManager(doc.NameTable);
  nsmanager.AddNamespace("w", "http://schemas.microsoft.com/office/word/2003/2/wordml");
  nsmanager.AddNamespace("v", "urn:schemas-microsoft-com:vml");
  nsmanager.AddNamespace("o", "urn:schemas-microsoft-com:office:office");
  System.Xml.XmlNode node = doc.SelectSingleNode("w:wordDocument/v:body/o:t", nsmanager);
  Response.Write(node.InnerText);
  
  node.InnerText = "欢迎光临【孟宪会之精彩世界】:http://dotnet.aspx.cc/";
  
  //创建CDATA节点
  System.Xml.XmlCDataSection xcds = doc.CreateCDataSection("<a href='http://dotnet.aspx.cc/'>【孟宪会之精彩世界】</a>");
  node.ParentNode.InsertAfter(xcds, node);
  
  Response.Write(xcds.InnerText);
  
  doc.Save(Server.MapPath("test.xml"));
【责编:Peng】

中国IT教育

相关产品和培训
文章评论
 友情推荐链接
 认证培训
 专题推荐

 ·开源软件测试工具学习专题
 ·JSP Web开发 入门基础到高手进阶教程…
 ·JavaFX—是Java桌面的新希望么?
 ·安全至上 .NET开发安全策略…
 ·测试用例设计之道-测试用例学习专题
 ·面向Java开发人员的Scala指南
 ·Java设计模式之实例详解
 ·Oracle数据库11g 面向DBA和开发人员的重要新特性…
 ·桌面应用软件编程 J2SE技术详解…
 ·我“炫”我精彩-------WPF开发教程
 今日更新
 社区讨论
 博客论点
 频道精选
 Dotnet频道相关导航