如何从android中的xml读取数据

时间:2013-08-14 17:20:30

标签: android xml

我正在使用服务调用,我收到xml数据作为响应。 我收到数据

<?xml version="1.0"?>
<note>
<status>4</status>
</note>

现在如何从该xml数据中获取状态标记中的值'4'。

请帮忙

2 个答案:

答案 0 :(得分:1)

我建议使用XPath - 可以找到教程here

答案 1 :(得分:1)