我知道如何分析與DOM的XML文檔時,他們在形式:獲取XML節點的值
<tagname> valueIWant </tagname>
不過,現在我試圖讓該元素是不是在形式
<photo farm="9" id="8147664661" isfamily="0" isfriend="0" ispublic="1"
owner="[email protected]" secret="4902a217af" server="8192" title="Rainbow"/>
我通常使用cel.getTextContent()
來返回值,但在這種情況下不起作用。 cel.getAttributes()
,我認爲會工作...
理想情況下,我需要只是得到id和所有者的數值。但是,如果有人能夠幫助解決所有問題,那麼我可以處理刪除我以後不想要的部分。
這不是任何特定語言的必需的有效格式,但它反映了xml通常傾向於如何結構化[string nine = doc.attributes [「farm」]' –