package org.cneng.dom4j; import org.dom4j.Document; import org.dom4j.DocumentHelper; import org.dom4j.Element; /** * Created with IntelliJ IDEA. * User: Administrator * Date: 12-7-23 * Time: 上午11:29 * To change this template use File | Settings | File Templates */ public class CreatingXmlDocument { 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; } }