<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”,因为它被“:”分隔?
谢谢。
答案 0 :(得分:1)
我认为您需要解析它以进行SOAP解析。 ur Xml的标记模式显示,尝试使用Soap解析 一定会帮助你...