java--通过DOM方式创建xml文件

方法如下:

 //创建xml的方法
public static void createxml() throws Exception{
DocumentBuilderFactory  dbf=DocumentBuilderFactory.newInstance();
DocumentBuilder db=dbf.newDocumentBuilder();
Document document= db.newDocument();
//创建一个bookstore节点
 Element  bookstore=document.createElement("bookstore");
 
Element book=document.createElement("book");

Element book1=document.createElement("book");
//创建一个name节点并添加在book下
Element  name= document.createElement("name");
Element  author= document.createElement("author");
Element  name1= document.createElement("name");
Element  author1= document.createElement("author");

    book.appendChild(name);
    book.appendChild(author);
    book1.appendChild(name1);
       book1.appendChild(author1);
    //添加文本到name节点
    name.setTextContent("小王子");
author.setTextContent("六爷");
name1.setTextContent("三体");
author1.setTextContent("刘慈欣");

//设置book属性名以及属性值
book.setAttribute("id", "1");
book1.setAttribute("id", "2");
//向bookstore根节点中添加子节点
bookstore.appendChild(book);
bookstore.appendChild(book1);

//添加跟节点
document.appendChild(bookstore); 
//树的结构已经生成,接下来生成xml文件
//前几步都是一定的
TransformerFactory  tft= TransformerFactory.newInstance();
   Transformer   tf= tft.newTransformer();
   tf.setOutputProperty(OutputKeys.INDENT, "yes");
   //创建新的xml文件并导入document
tf.transform(new DOMSource(document), new StreamResult(new File("book1.xml")));  
}   


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值