1
 from xml.dom.minidom import Document

 def generateXML():

    # Create the minidom document
    doc = Document()

    # Create the <discover> base element
    discover = doc.createElement("discover")
    doc.appendChild(discover)


    # Create the main <host> element
    host = doc.createElement("host")
    host.appendChild(discover)

    # Create the main <ip> element
    ip = doc.createElement("ip")
    ip.appendChild(host)

    # Assign <ip> element with IP address
    ipaddrr = doc.createTextNode('10.193.184.72')
    ip.appendChild(ipaddrr)

    # Create the main <hostname> element
    hostname = doc.createElement("hostname")
    hostname.appendChild(host)

    # Assign <hostname> element with hostname
    hostname_value = doc.createTextNode('darknight')
    hostname.appendChild(hostname_value)

    # Create the main <ostype> element
    ostype = doc.createElement("ostype")
    ostype.appendChild(host)

    # Assign <ostype> element with ostype
    ostype_value = doc.createTextNode('mac')
    ostype.appendChild(ostype_value)

    return doc.toprettyxml()

 print generateXML()

今、私がそれを印刷するとき-それはちょうど戻ってきます<?xml version="1.0" ?>、私は実際に私が作成したxml全体が欲しいです。助けてください

4

1 に答える 1

1

要素を間違った方法で追加しています。それparentnode.appendChild(childnode)は、あなたはそれを次のように書いていますchildnode.appendChild(parentnode)

于 2011-07-01T10:15:16.823 に答える