0

我是 Android 开发的新手,我想在 android 中使用 XML Resource Parser 解析仅节点的 xml 文件。我只能让它解析包含属性的 XML,但是我不希望我的 xml 包含属性,我只想提取节点中包含的数据。我可以用 XRP 做到这一点吗?似乎只有 XML 包含属性的方法,例如 getAttributeValue

我的 xml 看起来像这样:

<Streets>
<street>ABBEY WAY</street>
<district>WILLESBOROUGH</district>
<collectionday>FRIDAY</collectionday>
<jan>6,20</jan>
<feb>3,17</feb>
<mar>2,16,30</mar>
<apr>13,27</apr>
<may>11,25</may>
<jun>8,22</jun>
<jul>6,20</jul>
<aug>3,17,31</aug>
<sep>14,28</sep>
<oct>12,26</oct>
<nov>9,23</nov>
<dec>TBA</dec>
<street>ABBOTT WAY</street>
<district>TENTERDEN</district>
<collectionday>TUESDAY</collectionday>
<jan>10,24</jan>
<feb>7,21</feb>
<mar>6,20</mar>
<apr>3,17</apr>
<may>1,15,29</may>
<jun>12,26</jun>
<jul>10,24</jul>
<aug>7,21</aug>
<sep>4,18</sep>
<oct>2,16,30</oct>
<nov>13,27</nov>
<dec>TBA</dec>
<street>ACKERLEY COURT</street>
<district>STANHOPE</district>
<collectionday>THURSDAY</collectionday>
<jan>12,26</jan>
<feb>9,23</feb>
<mar>8,22</mar>
<apr>5,19</apr>
<may>3,17,31</may>
<jun>14,28</jun>
<jul>12,26</jul>
<aug>9,23</aug>
<sep>6,20</sep>
<oct>4,18</oct>
<nov>1,15,29</nov>
<dec>TBA</dec>
</Streets>

我最初想从街道节点创建一个数组

非常感谢

4

1 回答 1

1

您也可以使用 Simple for Android。它非常简单且有据可查: http ://simple.sourceforge.net/

恕我直言,我可以直接从 xml 文档中获取对象的解析器非常简洁:)

于 2012-08-06T14:54:24.690 回答