快速业务通道

DOM4J介绍与代码示例 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16
therStuElement.addAttribute("sn", "02");     Element anotherNameElement = anotherStuElement.addElement("name");     anotherNameElement.setText("lin");     Element anotherAgeElement = anotherStuElement.addElement("age");     anotherAgeElement.setText("20");     return document;    }    public Document generateDocumentByString() {     String text = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +         "<?xml-stylesheet type=\"text/xsl\" href=\"students.xsl\"?>" +         "<students><!--An Student Catalog--> <student sn=\"01\">" +         "<name>sam</name><age>18</age></student><student sn=\"02\">" +         "<name>lin</name><age>20</age></student></students>";     Document document = null;     try {       document = DocumentHelper.parseText(text);     } catch (DocumentException e) {       e.printStackTrace();     }     return document;    }    public void saveDocument(Document document, File outputXml) {     try {       // 美化格式       OutputFormat format = OutputFormat.createPrettyPrint();       /*// 缩减格式       OutputFormat format = OutputFormat.createCompactFormat();*/       /*// 指定XML编码        format.setEncoding("GBK");*/       XMLWriter output = new XMLWriter(new FileWriter(outputXml), format);       output.write(document);       output.close();     } catch (IOException e) {       System.out.println(e.getMessage());     }    }    public static void main(String[] argv) {     XmlGen dom4j = new XmlGen();     Document document = null;     // document=dom4j.generateDocumentByMethod();     document = dom4j.generateDocumentByString();     dom4j.saveDocument(document, new File("output.xml"));    } }

DOM4J介绍与代码示例(3)

时间:2011-07-08 51cto博客 zhangjunhd

方法generateDocumentByMethod()通过调用方法构建xml文档:

1.使用DocumentHelper得到Document实例

Document document = DocumentHelper.createDocument();

2.创建Processing Instruction

document.addProcessingInstruction("xml-stylesheet", inMap);

3.创建元素Element

Element studentsElement = document.addElement("students");

4.为元素添加注释Comment

studentsElement.addComment("An Student Catalog");

5.为元素添加属性

studentsElement.addComment("An Student Catalog");

6.为元素添加文本值Text

ageElement.setText("18");

方法generateDocumentByString()通过字符串转换直接构建xml文档,使用DocumentHelper.parseText()来实现.

document = DocumentHelper.parseText(text);

方法saveDocument(Document document, File outputXml)将文档输出到文件保存,可指定字符编码,可指定格式化输出。

3.修改XML文档

这里使用xpath来定位待修改

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号