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

      

  • 相关阅读:
    python的各版本的不同
    keras中的early stopping
    NER的数据处理
    ner处理数据的方式
    python的数据处理一
    linux下的终端利器----tmux
    BiseNet学习笔记
    《Harnessing Synthesized Abstraction Images to Improve Facial Attribute Recognition》论文阅读笔记
    转:玩玩三维重建
    《Cascaded Pyramid Network for Multi-Person Pose Estimation》论文阅读及复现笔记
  • 原文地址:https://www.cnblogs.com/wwssgg/p/14328508.html
Copyright © 2011-2022 走看看