用dom4j设置xml文件输出时格式
当我们在用dom4j处理xml文件输出的时候可能会遇到以下的问题,就是我们要求每个element中的text保留我写入的原始信息,比如说空格不能被去除;
比如说我们要输出xml文件中的内容为:
<!-- l version="1.0" encoding="gb2312--><?xml version="1.0" encoding="gb2312"?>
<root>
? <author name="James" location="UK">James Strachan</author>
? <author name="Bob" location="US">???????? 中国? Bob McWhirter??????? </author>
</root>
注意author中的内容包括很多的空格;
不妨假设我们已经用以下的方法实现了对上面document的写入:
? public Document createDocument() {
????????? Document document = DocumentHelper.createDocument();
????????? Element root = document.addElement( "root" );
????????? Element author1 = root.addElement( "author" )
????????????? .addAttribute( "name", "James" )
????????????? .addAttribute( "location", "UK" )
????????????? .addText( "James Strachan" );
????????? Element author2 = root.addElement( "author" )
????????????? .addAttribute( "name", "Bob" )
????????????? .addAttribute( "location", "US" )
????????????? .addText( "???????? 中国? Bob McWhirter??????? " );
????????? return document;
????? }
dom4j中把document直接或者任意的node写入xml文件时有两种方式:
1、这也是最简单的方法:直接通过write方法输出,如下:
?FileWriter fw = new FileWriter("test.xml");
?document.write(fw);
此时输出的xml文件中为默认的UTF-8编码,没有格式,空格也没有去除,实际上就是一个字符串;其输出如下:
<!-- l version="1.0" encoding="UTF-8--><?xml version="1.0" encoding="UTF-8"?>
<root>