可能重复:
Android: How we can get the value from attribute from xml string
我有以下字符串。我想要解析attribute of outline
。
<opml version="1">
<head>
<status>200</status>
</head>
<body>
<outline type="text" text="General" guide_id="f1" is_default="true"/>
<outline type="text" text="Rock Stations" guide_id="f2"/>
<outline type="text" text="Rock Stations" guide_id="f3"/>
<outline type="text" text="Rock" guide_id="f4"/>
<outline type="text" text="Awdhesh" guide_id="f5"/>
</body>
</opml>
我如何解析属性并获取text
和guide_id
的值。
我可以使用哪个解析器来执行此操作?