0

为了制作一个漂亮且可读的测试用例,我想解析一些手写的 XML(从 xmpp.org 复制粘贴),将其转换为 Stanza 或 XMLElement 并继续进行实际测试。所以我想完全避免节建设者。

使用非阻塞 XML 解析器可以做到这一点吗?

4

1 回答 1

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);
    }
}
于 2012-09-28T08:59:14.403 回答