为了创建一个漂亮且可读的测试用例,我想解析一些手工编写的XML(从xmpp.org复制粘贴),将其转换为Stanza或XMLElement并继续进行实际测试。所以我想完全避免使用节。
非阻塞XML解析器是否可以实现这一点?
答案 0 :(得分:0)
为了获得XMLElement解决方案,是使用DefaultNonBlockingXMLReader并分配一个节监听器。 诀窍是启动“流”,因此要测试的节的XML应该包含在“.....
之类的内容中代码:
private Stanza fetchStanza(String xml) throws SAXException {
try {
NonBlockingXMLReader reader = new DefaultNonBlockingXMLReader();
reader.setContentHandler(new XMPPContentHandler(new XMLElementBuilderFactory()));
XMPPContentHandler contentHandler = (XMPPContentHandler) reader.getContentHandler();
final ArrayList<Stanza> container = new ArrayList(); // just some container to hold stanza.
contentHandler.setListener(new XMPPContentHandler.StanzaListener() {
public void stanza(XMLElement element) {
Stanza stanza = StanzaBuilder.createClone(element, true, Collections.EMPTY_LIST).build();
if (!container.isEmpty()) {
container.clear(); // we need only last element, so clear the container
}
container.add(stanza);
}
});
IoBuffer in = IoBuffer.wrap(("<stream>" + xml + "</stream>").getBytes()); // the trick it to wrap xml to stream
reader.parse(in, CharsetUtil.UTF8_DECODER);
Stanza stanza = container.iterator().next();
return stanza;
} catch (IOException ex) {
throw new RuntimeException(ex);
}
}