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();
           }
      }
    

      

  • 相关阅读:
    面试收集—hello,world 也有新花样
    div+css优缺点
    css固定textarea文本域尺寸
    Python if __name__ == "__main__":
    ActionScript3.0基础教程
    【转】Flex代码生成器 (FCG)
    手机第一博文
    TabNavigator只初始化第一个TAB 引发的未初始化对象错误
    如何对待懒惰的小孩
    对孩子真诚就是尊重孩子,不要随意表扬
  • 原文地址:https://www.cnblogs.com/wwssgg/p/14328508.html
Copyright © 2011-2022 走看看