我在 android 中编程,我通过 SOAP 获取一些 xml 数据,这些数据放在一个字符串对象中。现在我想从中获取所有 id 并将它们放入一个数组中。我怎么做 ??????从下面的代码中,我想在一个数组中获取值 1101、1103 .....请帮助
<getAvailableSpotResult>
<garage id=1 name='South Garage' address='100 acme dr' city='san jose' state='ca' zip='95052'>
<floor number='1'>
<spot id='1101' status='available'/>
<spot id='1103' status='available'/>
</floor>
</garage>
</getAvailableSpotResult>