博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xml 创建文件
阅读量:6842 次
发布时间:2019-06-26

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

   XmlDocument xmlDoc = new XmlDocument();            

            XmlNode xmlNode = xmlDoc.CreateNode(XmlNodeType.XmlDeclaration, "", "");
            xmlDoc.AppendChild(xmlNode);
            //加入根元素
            XmlElement xmlElem = xmlDoc.CreateElement("", "ROOT", "");        
            //xmlElem.SetAttribute("color", "red");
            //xmlElem.InnerText = "根结点";    
            xmlDoc.AppendChild(xmlElem);
            XmlElement xmlelem_c = xmlDoc.CreateElement("FIRST");
            xmlelem_c.SetAttribute("noe", "First nod");
            xmlelem_c.InnerText = "第1节点";
            xmlElem.AppendChild(xmlelem_c);
            
            xmlDoc.Save("d:\\t.xml");

转载于:https://www.cnblogs.com/xmyy/articles/2366408.html

你可能感兴趣的文章