Android:我们如何解析opml String

时间:2012-06-13 04:50:45

标签: android parsing opml

  

可能重复:
  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>

我如何解析属性并获取textguide_id的值。 我可以使用哪个解析器来执行此操作?

1 个答案:

答案 0 :(得分:0)

使用Dom Parser,下面是Dom Parser示例的链接。

Dom Parsing