2

获取 XML 字符串的子节点的首选方法是什么?在 android.xml 中似乎缺乏使用 XmlPullParser 解析的好例子。例如,如果我想解析这个:

<Point>
    <Id>81216</Id>
    <Name>Lund C</Name>
</Point>

我想出了一种方法来完成这项工作:

List<Point> points = new ArrayList<Point>();
String id = null
name = null;

while (eventType != XmlPullParser.END_DOCUMENT) {
    if (eventType == XmlPullParser.START_TAG && xpp.getName().equals("Id")) {
        try {
            id = xpp.nextText();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    else if (eventType == XmlPullParser.START_TAG && xpp.getName().equals("Name")) {
    try {
        name = xpp.nextText();
    } catch (Exception e) {
        e.printStackTrace();
    }
    else if(eventType == XmlPullParser.END_TAG && xpp.getName().equals("Point")) {
        Point point = new Point(id, name);
        points.add(point);
    }

    try {
        eventType = xpp.next();
    } catch (exception e) {
        e.printStackTrace();
    }
}

for (Point p : points) {
    tv.append(p.getId() + " | " + p.getName() + "\n");
}

但它看起来真的很丑。有没有更好的方法来做到这一点?

4

1 回答 1

1

在我看来,在 XML 中处理文本的更好方法如下所述:

http://androidcookbook.com/Recipe.seam?recipeId=2217

getText() 不会生成异常,因为您位于 XmlPullParser.TEXT 区域内(因此可以确定 Text 存在)。

希望能帮助到你!

于 2012-07-21T01:56:31.657 回答