快速业务通道

Java Web服务,第2部分: 深度探索Axis2:AXIOM - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-19
 org.apache.axiom.om.*; import org.apache.axiom.om.impl.builder.StAXOMBuilder; import org.apache.axiom.om.impl.llom.factory.OMLinkedListImplFactory;    ...    private XMLInputFactory m_parserFactory = XMLInputFactory.newInstance();    private OMFactory m_factory = new OMLinkedListImplFactory();    ...    protected Object build(InputStream in) {      Object doc = null;      try {        XMLStreamReader reader = m_parserFactory.createXMLStreamReader(in);        StAXOMBuilder builder = new StAXOMBuilder(m_axiomFactory, reader);        doc = builder.getDocument();      } catch (Exception ex) {        ex.printStackTrace(System.out);        System.exit(0);      }      return doc;    }

清单 3 使用了 org.apache.axiom.om.impl.builder.StAXOMBuilder 类通过解析输入流来构建文档表示。这段代码在返回之前仅创建了 StAX 解析器实例和基本文档结构,并使得解析器定位到文档的根元素,如果需要,稍后再构建文档表示的其他部分。并不一定 必须使用 StAX 解析器来构建 AXIOM。事实上,org.apache.axiom.om.impl.builder.SAXOMBuilder 是基于 SAX 推式解析器的构建程序的部分实现。但如果您使用其他方法来构建它,那么就无法利用按需构造所带来的优点。

清单 4 提供了用于遍历文档表示中的元素并累计摘要信息(元素的计数,属性值文本的计数和总长度,以及文本内容的计数和总长度)的代码。底部的 walk() 方法接受需要进行汇总的文档以及摘要数据结构作为参数,而顶部的 walkElement() 方法则处理一个元素(递归地调用自己以便对子元素进行处理)。

清单 4. 导航 AXIOM

/**     * Walk subtree for element. This recursively walks through the document     * nodes under an element, accumulating summary information.     *     * @param element element to be walked     * @param summary document summary information     */    protected void walkElement(OMElement element, DocumentSummary summary) {      // include attribute values in summary      for (Iterator iter = element.getAllAttributes(); iter.hasNext();) {        OMAttribute attr = (OMAttribute)iter.next();        summary.addAttribute(attr.getAttributeValue().length());      }      // loop through children      for (Iterator iter = element.getChildren(); iter.hasNext();) {        // handle child by type         OMNode child = (OMNode)iter.next();        int type = child.getType();        if (type == OMNode.TEXT_NODE) {          summary.addContent(((OMText)child).getText().length());        } else if (type == OMNode.ELEMENT_NODE) {          summary.addElements(1);          walkElement((OMElement)child, summary);        }      }    }    /**     * Walk and summarize document. This method walks through the nodes     * of the document, accumulating summary information.     *     * @param doc document representation to be walked     * @param summary o

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号