论坛首页 Java企业应用论坛

java 操作xml 文件 <一>写操作

浏览 4018 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2009-06-06   最后修改:2009-06-06
对xml进行读操作:http://cheney-mydream.iteye.com/admin/blogs/403212
接着上一次《java 操作xml 文件 <一>读取》的来

构建一个xml文件

public void testWrite(){
	
//		创建相关节点
		Element root = new Element("person");
		
		Element name = new Element("name");
		name.addContent("张三");
		Element age = new Element("age");
		age.addContent("24");
//		把子节点加到父节点下
		root.addContent(name);
		root.addContent(age);
//		创建document对象
		Document doc = new Document(root);
//		输出创建好的xml文件
		XMLOutputter out = new XMLOutputter();
		try {
			out.output(doc, new FileOutputStream("c:/person.xml"));
		} catch (FileNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		
	}
   发表时间:2009-06-11  
Xstream
0 请登录后投票
   发表时间:2009-06-11  
只是写的话 找个template要方便得多
0 请登录后投票
   发表时间:2009-06-11  
   dom4j 或 xstream强大的很,专门用dom或sax去解析,费事,了解下就行了。
0 请登录后投票
   发表时间:2009-06-11  
myworkfirst 写道
   dom4j 或 xstream强大的很,专门用dom或sax去解析,费事,了解下就行了。

谢谢各位哦,我也是刚开始学xml的一些操作,多多指教
0 请登录后投票
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics