博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA使用JDOM创建简单xml
阅读量:6760 次
发布时间:2019-06-26

本文共 832 字,大约阅读时间需要 2 分钟。

hot3.png

package org.hu.jdom;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import org.jdom.*;import org.jdom.output.XMLOutputter;public class MyJDOM {	public static void main(String args[]){		Element root=new Element("root");		Element linkman=new Element("linkman");		Element name=new Element("name");		Element email=new Element("email");		Attribute id=new Attribute("id", "001");				Document doc=new Document(root);		name.setText("莉莉");		name.setAttribute(id);		email.setText("hid@njd.com");		linkman.addContent(name);		linkman.addContent(email);		root.addContent(linkman);				XMLOutputter out=new XMLOutputter();		try {			out.output(doc, new FileOutputStream(new File("D:"+File.separator+"demo.xml")));		} catch (IOException e) {			e.printStackTrace();		}			}}

转载于:https://my.oschina.net/hzy3774/blog/63077

你可能感兴趣的文章
/MT、/MD编译选项,以及可能引起在不同堆中申请、释放内存的问题
查看>>
NSCharacterSet 去除NSString中的空格
查看>>
ubuntu server 使用parted分区
查看>>
自定义网页日历
查看>>
solr实现满足指定距离范围条件的搜索
查看>>
[转载]Web前端研发工程师编程能力飞升之路
查看>>
Redis
查看>>
XINS 3.0 正式版发布,远程 API 调用规范
查看>>
(转)Oracle中For和while及一些应用
查看>>
jQuery基础及选择器
查看>>
DragonFly BSD 3.2 发布
查看>>
C#中为什么需要装箱拆箱操作?
查看>>
PHP类中一般方法与静态方法的疑问
查看>>
[转]PHP花括号变量
查看>>
Fedora16安装中文语言包和中文输入法
查看>>
Windows 8实用窍门系列:14.windows 8中粘贴板(剪切板)的使用
查看>>
ASP.NET中 RadioButtonList(单选按钮组)的使用
查看>>
SESSION 丢失
查看>>
DES可逆加解密
查看>>
如何理解ip路由和操作linux的路由表
查看>>