我知道如何用SAX解析器解析XML。我的XML是這樣的:如何使用相同的標籤名稱解析XML?
-<address_component>
<long_name>Chambers St</long_name>
<short_name>Chambers St</short_name>
<type>route</type>
</address_component>
-<address_component>
<long_name>Downtown</long_name>
<short_name>Downtown</short_name>
<type>neighborhood</type>
<type>political</type>
</address_component>
我的問題:當XML有兩個標籤具有相同的名稱,就像在這種情況下,「類型」,我的代碼只得到最後一個變量的值。在這種情況下,「類型」變得「政治化」,並跳過「鄰居」。
我該如何處理?
你用來解析它的代碼會非常有幫助。 ;) – Tomalak
我想從這個URL解析XML http://maps.googleapis.com/maps/api/geocode/xml?latlng=25.665393829345703,-80.29926147460938&sensor=true任何建議? – Maulik