相关文章推荐
温暖的硬盘  ·  cxf和spring ...·  1 年前    · 
幸福的红酒  ·  ProcessEngine ...·  1 年前    · 
果断的橡皮擦  ·  git push - What does ...·  1 年前    · 
本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《 阿里云开发者社区用户服务协议 》和 《 阿里云开发者社区知识产权保护指引 》。如果您发现本社区中有涉嫌抄袭的内容,填写 侵权投诉表单 进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。 import org.dom4j.DocumentHelper; import org.dom4j.Element; import org.dom4j.io.OutputFormat; import org.dom4j.io.XMLWriter; import java.io.FileWriter; import java.io.IOException; public class Writer { public static void main(String[] args) throws IOException { //创建xml文档 Document document = DocumentHelper.createDocument(); //文档添加根节点,只能添加一个,添加多个: Cannot add another element to this Document as it already has a root element of Element root = document.addElement("mymvc"); for (int i = 0; i < 2; i++) { //添加子节点 Element actions = root.addElement("actions"); Element listAction = actions.addElement("action"); //设置子节点属性 listAction.addAttribute("name","list"); listAction.addAttribute("class","controller"); //设置子节点内容 listAction.setText("第"+(i+1)+"个hello,action!"); //创建输出格式 OutputFormat format = OutputFormat.createPrettyPrint(); //XML写入工具 XMLWriter writer=new XMLWriter(new FileWriter("ghy.xml"),format); //写入文档至XML文件 writer.write(document); //关闭流 writer.close();