2013-02-28 56 views
7

命名空間選擇節點我有一個像不使用XPath

<root xmlns:ns1="http://foo"> 
    <ns1:child1>Text</ns1:child1> 
    <ns1:child2>Number</ns1:child2> 
</root> 

一個xml現在我得到這個由不同的人,因此例如人2送我另一個消息具有相同的結構類似

<root xmlns:anotherNs="http://foo"> 
    <anotherNs:child1>Another Text</anotherNs:child1> 
    <anotherNs:child2>Another Number</anotherNs:child2> 
</root> 

所以唯一的區別是命名空間的名稱。如何爲一個XPath表達式的xml選擇child2的內容​​?

像「/ root/child2」或「// child2」這樣的東西不起作用。

回答

0

可以綁定你喜歡的(說香蕉)命名空間"http://foo"任何前綴,並表達/root/banana:child2會發現的child2元素,無論使用什麼名稱空間前綴已在源文檔中使用。只有名稱空間URI必須匹配。