dom4j常用的方法

Element有几个重要的方法:

l addComment:添加注释

l addAttribute:添加属性

l addElement:添加子元素

一些常用的思路

SAXReader sx = new SAXReader()

Document document = DocumentHelper.createDocument();

Element root = document.addElement(root);

Element author1 =

root

.addElement(author)

.addAttribute(name, James)

.addAttribute(location, UK)

.addText(James Strachan);

一个节点/元素可以有一般以上几个方法

相关推荐