获得标签属性值
- "1.0" encoding="utf-8"?>
- <catalog>
- <maxid>4maxid>
- <login username="pytest" passwd='123456'>
- <caption>Pythoncaption>
- <item id="4">
- <caption>测试caption>
- item>
- login>
- <item id="2">
- <caption>Zopecaption>
- item>
- catalog>
- #coding=utf-8
- import xml.dom.minidom
-
- #打开xml文档
- dom = xml.dom.minidom.parse('abc.xml')
-
- #得到文档元素对象
- root = dom.documentElement
-
- itemlist = root.getElementsByTagName('login')
- item = itemlist[0]
- un=item.getAttribute("username")
- print un
- pd=item.getAttribute("passwd")
- print pd
-
- ii = root.getElementsByTagName('item')
- i1 = ii[0]
- i=i1.getAttribute("id")
- print i
-
- i2 = ii[1]
- i=i2.getAttribute("id")
- print i
getAttribute方法可以获得元素的属性所对应的值。
获得标签对之间的数据
- "1.0" encoding="utf-8"?>
- <catalog>
- <maxid>4maxid>
- <login username="pytest" passwd='123456'>
- <caption>Pythoncaption>
- <item id="4">
- <caption>测试caption>
- item>
- login>
- <item id="2">
- <caption>Zopecaption>
- item>
- catalog>
<caption>标签对之间是有数据的,如何获得这些数据?
获得标签对之间的数据有多种方法,
方法一
- #coding=utf-8
- import xml.dom.minidom
-
- #打开xml文档
- dom = xml.dom.minidom.parse('abc.xml')
-
- #得到文档元素对象
- root = dom.documentElement
-
- cc=dom.getElementsByTagName('caption')
- c1=cc[0]
- print c1.firstChild.data
-
- c2=cc[1]
- print c2.firstChild.data
-
- c3=cc[2]
- print c3.firstChild.data
firstChild 属性返回被选节点的第一个子节点,.data表示获取该节点人数据。
方法二
- #coding=utf-8
- from xml.etree import ElementTree as ET
- per=ET.parse('abc.xml')
- p=per.findall('./login/item')
-
- for oneper in p:
- for child in oneper.getchildren():
- print child.tag,':',child.text
-
-
- p=per.findall('./item')
-
- for oneper in p:
- for child in oneper.getchildren():
- print child.tag,':',child.text
方法二有点复杂,所引用模块也与前面的不一样,findall用于指定在哪一级标签下开始遍历。
getchildren方法按照文档顺序返回所有子标签。并输出标签名(child.tag)和标签的数据(child.text),其实,方法二的作用不在于此,它核心功能是可以遍历某一级标签下的所有子标签。