Java dom4j生成XML文件的方法分享

java-教程王 Java教程 发布时间:2021-12-06 11:40:29 阅读数:8594 1
下文讲述使用dom4j生成XML文件的方法分享,如下所示:

dom4j创建xml的方法分享

  1.创建一个文档模型
     Document document = DocumentHelper.createDocument(); 
  2.创建元素的根节点
     Element root = document.addElement("root");
  3.根节点添加元素和属性
    root.addElement("author").addAttribute("name","maomao").addAttribute("location","CN").addText("shenzhen" );
  4.保存文件
    writer.write(document);
    writer.close();
例:
public static void main(String[] args) throws IOException {
    OutputFormat format = OutputFormat.createPrettyPrint();
    XMLWriter writer = new XMLWriter(new FileWriter("test.xml"), format);

    Document document = DocumentHelper.createDocument();
    Element root = document.addElement("root");

    root.addComment("This is xml comment");
    root.addElement("author").addAttribute("name", "maomao").addAttribute("location", "CN").addText("shenzhen");
    writer.write(document);
    writer.close();
}
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaCourse/202112/1998.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者