How to add xmlnamespace to a xmldocument

前端 未结 3 963
终归单人心
终归单人心 2020-12-03 21:47

Im trying to create a xml the should look like this




        
相关标签:
3条回答
  • 2020-12-03 21:55
    XmlDocument xmlDocSPack = new XmlDocument();
    XmlNode xmldocNode = xmlDocSPack.CreateXmlDeclaration("1.0", "", null);
    xmlDocSPack.AppendChild(xmldocNode);
    
    XmlElement LiftsMainNode = xmlDocSPack.CreateElement("Lifts");
    LiftsMainNode.SetAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
    
    xmlDocSPack.AppendChild(LiftsMainNode);
    xmlDocSPack.Save("SPack"+DateTime.Now.Year + ".xml");
    

    Output :

    <?xml version="1.0"?>
    <Lifts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />
    
    0 讨论(0)
  • 2020-12-03 21:59

    This works for me:

    XmlDocument.DocumentElement.SetAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
    XmlDocument.DocumentElement.SetAttribute("xmlns:xsd", "http://www.w3.org/2001/XMLSchema");
    

    If you want to create the entire document you've posted, you might not want to forget the XML declaration:

            XmlDeclaration xml_declaration;
            xml_declaration = XmlDocument.CreateXmlDeclaration("1.0", "ISO-8859-1", "yes");
    
            XmlElement document_element = XmlDocument.DocumentElement;
            XmlDocument.InsertBefore(xml_declaration, document_element);
    

    In certain cases you might need it.

    0 讨论(0)
  • 2020-12-03 22:07

    This question also shows another way of doing this: Creating a specific XML document using namespaces in C#

    You could alternatively use the XmlNamespaceManager class

    http://msdn.microsoft.com/en-us/library/d6730bwt%28VS.80%29.aspx

    Finally there is always Linq too, you could use a XDocument and XNamespace

    http://msdn.microsoft.com/en-us/library/bb387075.aspx

    0 讨论(0)
提交回复
热议问题