并且它对模式有效。但是我遇到了在python中使用xpath的问题。
<spring:beans xmlns="http://membrane-soa.org/proxies/1/"
xmlns:spring="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://membrane-soa.org/proxies/1/ http://membrane-soa.org/schemas/proxies-1.xsd">
<fileExchangeStore
id="myFileExchangeStore"
dir="./exchanges"
maxDays="30" />
我写了这部分剧本:
from lxml import etree
a = etree.parse("output.xml")
r=a.xpath('//empty:beans',
namespaces= { 'empty':"http://membrane-soa.org/proxies/1/",
'spring':"http://www.springframework.org/schema/beans",
"xsi": "http://www.w3.org/2001/XMLSchema-instance",
'schemaLocation':"http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://membrane-soa.org/proxies/1/ http://membrane-soa.org/schemas/proxies-1.xsd"})
现在我被这个xpath困住了。在这种情况下,“r”是空列表。我已经尝试了stackoverflow的几个解决方案,如何在xpath中处理命名空间,但没有成功。我会感谢任何有关如何获取“fileExchangeSotre”内容的建议。
答案 0 :(得分:1)
尝试使用以下代码:
namespaces= { 'empty':"http://membrane-soa.org/proxies/1/",
'spring':"http://www.springframework.org/schema/beans",
"xsi": "http://www.w3.org/2001/XMLSchema-instance",
'schemaLocation':"http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://membrane-soa.org/proxies/1/ http://membrane-soa.org/schemas/proxies-1.xsd"}
r = a.xpath('/spring:beans/*[local-name()="fileExchange"]/@*', namespaces=namespaces)