zoukankan      html  css  js  c++  java
  • 直接创建一个XmlDocument文档

    XML 文件: 

    <?xml version="1.0" encoding="utf-8"?>
    <CategoryList>
    <Category ID="01">
    <MainCategory>XML</MainCategory>
    <Description>This is a list my XML articles.</Description>
    <Active>true</Active>
    </Category>
    </CategoryList>
    代码如下: 
    <%@ Import Namespace="System.Data" %>
    <%@ Import Namespace="System.Xml" %>
    <%@ Page Language="C#" Debug="true" %>
    <script  runat="server">
    void Page_Load(object sender, System.EventArgs e){
    if(!Page.IsPostBack){
    XmlDocument xmlDoc = new XmlDocument();
    // Write down the XML declaration
    XmlDeclaration xmlDeclaration = xmlDoc.CreateXmlDeclaration("1.0","utf-8",null);
    // Create the root element
    XmlElement rootNode  = xmlDoc.CreateElement("CategoryList");
    xmlDoc.InsertBefore(xmlDeclaration, xmlDoc.DocumentElement);
    xmlDoc.AppendChild(rootNode);
    // Create a new <Category> element and add it to the root node
    XmlElement parentNode  = xmlDoc.CreateElement("Category");
    // Set attribute name and value!
    parentNode.SetAttribute("ID""01");
    xmlDoc.DocumentElement.PrependChild(parentNode);
    // Create the required nodes
    XmlElement mainNode  = xmlDoc.CreateElement("MainCategory");
    XmlElement descNode  = xmlDoc.CreateElement("Description");
    XmlElement activeNode  = xmlDoc.CreateElement("Active");
    // retrieve the text
    XmlText categoryText= xmlDoc.CreateTextNode("XML");
    XmlText descText  = xmlDoc.CreateTextNode("This is a list my XML articles.");
    XmlText activeText  = xmlDoc.CreateTextNode("true");
    // append the nodes to the parentNode without the value
    parentNode.AppendChild(mainNode);
    parentNode.AppendChild(descNode);
    parentNode.AppendChild(activeNode);
    // save the value of the fields into the nodes
    mainNode.AppendChild(categoryText);
    descNode.AppendChild(descText);
    activeNode.AppendChild(activeText);
    // Save to the XML file
    xmlDoc.Save( Server.MapPath("categories.xml"));
    Response.Write("XML file created");
    }
    }
    </script>
  • 相关阅读:
    最小的k个数
    数组中出现次数超过一半的数字
    字符串的排列
    二叉搜索树与双向链表
    复杂链表的复制
    二叉树中和为某一值的路径
    centos7安装wrk
    【胡思乱想】JNI与线程池的维护
    【胡思乱想】命令模式中,命令对象如何解耦Invoker和Receiver
    【胡思乱想】命令模式 与 Thread Runnable
  • 原文地址:https://www.cnblogs.com/lujin49/p/2238680.html
Copyright © 2011-2022 走看看