使用 DOM4J 编写一个 XML 文档(三)


package com.syh.xml.dom4j;

import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

import org.jdom.Document;
import org.jdom.Element;
import org.jdom.output.Format;
import org.jdom.output.XMLOutputter;


public class Dom4jTest3 {

public static void main(String[] args) throws Exception {

Document document = new Document() ;

Element rootEle = new Element("联系人列表").setAttribute("公司", "A 集团") ;

document.addContent(rootEle) ;

Element childrenEle = new Element("联系人") ;

rootEle.addContent(childrenEle) ;

//这里采用的是方法链编写风格
childrenEle.addContent(new Element("姓名").setText("张三"))
.addContent(new Element("公司").setText("A 公司"))
.addContent(new Element("电话").setText("(021)5555666"))
.addContent(
new Element("地址")
.addContent("街道").setText("5街")
.addContent("城市").setText("上海市")
.addContent("省份").setText("上海")) ;

Format format = Format.getPrettyFormat().setIndent(" ").setEncoding("GBK") ;

XMLOutputter out = new XMLOutputter(format) ;

out.output(document, new FileWriter("students3.xml")) ;

}

}




下面是编写 XML 文档的结果:(位于同src同级的目录下)


<!-- students3.xml -->
<?xml version="1.0" encoding="GBK"?>
<联系人列表 公司="A 集团">
<联系人>
<姓名>张三</姓名>
<公司>A 公司</公司>
<电话>(021)5555666</电话>
<地址>上海</地址>
</联系人>
</联系人列表>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值