zoukankan      html  css  js  c++  java
  • ASP.NET创建xml文件

     protected void WriteGiftInfoXml()
    {
                XmlDocument XDoc = new XmlDocument();
                XDoc.LoadXml("<GiftInfo></GiftInfo>");
                //设置版本信息
                XmlDeclaration xmldecl;
                xmldecl = XDoc.CreateXmlDeclaration("1.0", "utf-8", null);

                XmlElement root = XDoc.DocumentElement;
                XDoc.InsertBefore(xmldecl, root);

                //设置根节点
                XmlElement newGiftInfo = XDoc.DocumentElement;
                //创建礼品ID的节点
                XmlElement newGiftId = XDoc.CreateElement("GiftId");
                newGiftId.InnerText = "1001";     
                newGiftInfo.AppendChild(newGiftId);

                //创建礼品分类ID的节点
                XmlElement newCategoryId = XDoc.CreateElement("CategoryId");
                newCategoryId.InnerText = "Bless";       //礼品分类ID
                newGiftInfo.AppendChild(newCategoryId);


                XmlTextWriter tw = new XmlTextWriter(NewGiftFileAddress + GiftId + ".xml", System.Text.Encoding.UTF8);
                XDoc.WriteContentTo(tw);
                tw.Close();
    }

  • 相关阅读:
    501. Find Mode in Binary Search Tree
    [leetcode]Evaluate Reverse Polish Notation
    [leetcode]LRU Cache
    [mock]12月27日
    [mock]12月28日
    [leetcode]Max Points on a Line
    *[topcoder]JumpFurther
    [mock]12月11日
    *[topcoder]GUMIAndSongsDiv1
    [leetcode]Reorder List
  • 原文地址:https://www.cnblogs.com/mahongbo/p/1401399.html
Copyright © 2011-2022 走看看