使用Minidom获取XML节点

时间:2014-05-26 14:13:45

标签: python minidom

我尝试使用minidom解析具有以下结构的XML文件:

<?xml version="1.0" encoding="UTF-8"?> 
<Product> 
   <Product version='1'> 
      <Name>My Product</Name> 
    <Type>Physical</Type>
    <Stock>2</Visibility>     
</Product> 

到目前为止,我有这样的事情:

xmldoc = minidom.parse(file)
name = xmldoc.getElementsByTagName('Name')
print name[0].nodeValue

但是这会返回None。有人能指出我正确的方向吗?

1 个答案:

答案 0 :(得分:0)

好的,所以我错过了firstChild:

print name [0] .firstChild.nodeValue