<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”?

谢谢。

最佳答案

我认为您需要对其进行解析以进行SOAP解析。
ur Xml的标记模式表明,请尝试使用Soap解析
一定会帮助您...

10-07 19:19