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

      

  • 相关阅读:
    四十一.redis主从复制 RDB/AOF持久化 数据类型
    四十.创建Redis集群 管理集群
    三十九.NoSQL概述 部署Redis服务 、 部署LNMP+Redis
    三十八. 分库分表概述 配置mycat
    520D
    442C
    LA4788
    LA3276
    LA4122
    zoj3478
  • 原文地址:https://www.cnblogs.com/wwssgg/p/14328508.html
Copyright © 2011-2022 走看看