使用dom4j生成xml文件
时间: 2023-10-11 15:05:58 浏览: 113
好的,你可以通过以下代码片段使用dom4j生成xml文件:
```java
// 创建document对象
Document document = DocumentHelper.createDocument();
// 添加根元素
Element root = document.addElement("root");
// 添加子元素及其属性
Element child = root.addElement("child");
child.addAttribute("attribute", "value");
// 添加文本节点
child.addText("text");
// 将document对象写入文件
try {
XMLWriter writer = new XMLWriter(new FileOutputStream("example.xml"),
OutputFormat.createPrettyPrint());
writer.write(document);
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
```
这段代码可以将一个包含根元素和一个子元素的示例xml文件写入到当前工程的根目录下,你可以根据需求修改代码中的元素和属性。
阅读全文