浏览 4018 次
锁定老帖子 主题:java 操作xml 文件 <一>写操作
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-06-06
最后修改:2009-06-06
http://cheney-mydream.iteye.com/admin/blogs/403212
对xml进行读操作:接着上一次《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(); } } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2009-06-11
Xstream
|
|
返回顶楼 | |
发表时间:2009-06-11
只是写的话 找个template要方便得多
|
|
返回顶楼 | |
发表时间:2009-06-11
dom4j 或 xstream强大的很,专门用dom或sax去解析,费事,了解下就行了。
|
|
返回顶楼 | |
发表时间:2009-06-11
myworkfirst 写道 dom4j 或 xstream强大的很,专门用dom或sax去解析,费事,了解下就行了。
谢谢各位哦,我也是刚开始学xml的一些操作,多多指教 |
|
返回顶楼 | |