c#读写xml文件

using System.Xml;               


public static void writexml(string xmlPath, string otherproperties)

{

                 XmlDocument doc = new XmlDocument();

                doc.Load(xmlPath);

                XmlNode root = doc.DocumentElement;

                XmlElement element = doc.CreateElement("OTHER PROPERTIES", root.NamespaceURI);
                element.InnerText = otherproperties;

                root.AppendChild(element);

                doc.Save(xmlPath);

                 return;

}



注:在XmlDocument中新建XmlElement时,默认是必须有namespace的,所以如果使用XmlElement element = doc.CreateElement("OTHER PROPERTIES")的话,生成的

OTHER PROPERTIES中会自动带上 xmlns=“”的属性,截图如下。。




如果希望在root中增加一项,即如下,则需将element的namespace改成和root一致,即使用黄底部分写法。



你可能感兴趣的:(c#读写xml文件)