解析具有属性的xml

时间:2011-09-29 10:32:44

标签: android android-parser

 <content type="xhtml">

        <apxh:div>
            <apxh:p>xyz</apxh:p>
            <apxh:p>xyz</apxh:p>
            <apxh:p>xyz</apxh:p>
            <apxh:p>xyz</apxh:p>
            <apxh:p>xyz</apxh:p>

        </apxh:div>
    </content>

我可以通过

获取“xhtml”
       item.getChild(url,CONTENT).setStartElementListener(new StartElementListener() {

        @Override
        public void start(Attributes attributes) {
        str=attributes.getValue("type");


        }
    });
    item.getChild(url,CONTENT).setEndElementListener(new EndElementListener() {

        @Override
        public void end() {
            currentMessage.setType(str);

        }
    });

现在我如何得到“apxh:div”,因为它被“:”分隔?

谢谢。

1 个答案:

答案 0 :(得分:1)

我认为您需要解析它以进行SOAP解析。 ur Xml的标记模式显示,尝试使用Soap解析 一定会帮助你...