快速业务通道

Dom4j的使用 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-20
    调用: root.accept(new MyVisitor())

Visitor接口提供多种Visit()的重载,根据XML不同的对象,将采用不同的方式来访问。上面是给出的Element和Attribute的简单实现,一般比较常用的就是这两个。VisitorSupport是DOM4J提供的默认适配器,Visitor接口的Default Adapter模式,这个模式给出了各种visit(*)的空实现,以便简化代码。

注意,这个Visitor是自动遍历所有子节点的。如果是root.accept(MyVisitor),将遍历子节点。我第一次用的时候,认为是需要自己遍历,便在递归中调用Visitor,结果可想而知。

Dom4j的使用(4)

时间:2011-01-28 javaeye博客 陈光

4. XPath支持

DOM4J对XPath有良好的支持,如访问一个节点,可直接用XPath选择。

public void bar(Document document) {     List list = document.selectNodes( //foo/bar );     Node node = document.selectSingleNode(//foo/bar/author);     String name = node.valueOf( @name );   }

例如,如果你想查找XHTML文档中所有的超链接,下面的代码可以实现:

public void findLinks(Document document) throws DocumentException {     List list = document.selectNodes( //a/@href );     for (Iterator iter = list.iterator(); iter.hasNext(); ) {       Attribute attribute = (Attribute) iter.next();       String url = attribute.getValue();     }   }

5. 字符串与XML的转换

有时候经常要用到字符串转换为XML或反之,

// XML转字符串   Document document = ...;   String text = document.asXML(); // 字符串转XML   String text = <person> <name>James</name> </person>;   Document document = DocumentHelper.parseText(text);

6 用XSLT转换XML

public Document styleDocument(     Document document,     String stylesheet   ) throws Exception {   // load the transformer using JAXP   TransformerFactory factory = TransformerFactory.newInstance();   Transformer transformer = factory.newTransformer(     new StreamSource( stylesheet )   );   // now lets style the given document   DocumentSource source = new DocumentSource( document );   DocumentResult result = new DocumentResult();   transformer.transform( source, result );   // return the transformed document   Document transformedDoc = result.getDocument();   return transformedDoc; }

7. 创建XML

一般创建XML是写文件前的工作,这就像StringBuffer一样容易。

public Document createDocument() {     Document document = DocumentHelper.createDocument();     Element root = document.addElement(root);     Element author1 =       root        .addElement(author)        .addAttribute(name, James)        .addAttribute(location, UK)        .addText(James Strachan);     Element author2 =       root        .addElement(author)        .addAttribute(name, Bob)        .addAttribute(location, US)        .addText(Bob McWhirter);     return document;   }

Dom4j的使用(5)

时间:2011-01-28 javaeye博客 陈光

8. 文件输出

一个简单的输出方法是将一个Document或任何的Node通过write方法输出

FileWriter out = new FileWriter( foo.xml );  document.write(out);

如果你想改变输出的格式,比如美化

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站: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号