zoukankan      html  css  js  c++  java
  • 怎么利用dom4j包生成xml文档

    public static void createDom4j(File file){
      try{
    	// 创建一个Document实例
    	Document doc = DocumentHelper.createDocument();
    	// 添加根节点
    	Element root = doc.addElement("root");
    	// 在根节点下添加第一个子节点
    	Element oneChildElement= root.addElement("person").addAttribute("attr", "root noe");
    	oneChildElement.addElement("people").
    	addAttribute("attr", "child one").addText("person one child one");
    	oneChildElement.addElement("people")
    	.addAttribute("attr", "child two")
    	 .addText("person one child two");
    	// 在根节点下添加第一个子节点
    	 Element twoChildElement= root.addElement("person").addAttribute("attr", "root two");
    	 twoChildElement.addElement("people")
    	 .addAttribute("attr", "child one")
    	 .addText("person two child one");
    	twoChildElement.addElement("people")
    	.addAttribute("attr", "child two")
    	.addText("person two child two");
    
    	 // xml格式化样式
    	// OutputFormat format = OutputFormat.createPrettyPrint(); // 默认样式
    	 // 自定义xml样式
    	 OutputFormat format = new OutputFormat();
    	 format.setIndentSize(2);  // 行缩进
    	 format.setNewlines(true); // 一个结点为一行
    	 format.setTrimText(true); // 去重空格
    	 format.setPadText(true);
    	 format.setNewLineAfterDeclaration(false); // 放置xml文件中第二行为空白行
    	        
    	 // 输出xml文件
    	 XMLWriter writer = new XMLWriter(new FileOutputStream(file), format);
    	 writer.write(doc);
    	 System.out.println("dom4j CreateDom4j success!");
        }catch(Exception e){
    	e.printStackTrace();
           }
      }
    

      

  • 相关阅读:
    被隐藏的文件更改为可见
    Selenium WebDriver多层表单切换
    for循环
    Java课程设计二次大作业
    Java-DAO模式代码阅读及应用
    编辑器、编译器、文件、IDE等常见概念辨析
    树、二叉树和查找等知识点的总结
    二叉树的实现
    二叉树顺序结构和链式结构的相互转换
    使用k-近邻算法改进约会网站的配对效果
  • 原文地址:https://www.cnblogs.com/wwssgg/p/14328508.html
Copyright © 2011-2022 走看看