现象描述JDom输出Xml文件当使用字符编码GBK时正常而输出UTF时乱码
完美的解决方法从辟谣开始
)JDOM是否生成UTF的文件与Format是否设置无关只有输出其他字符编码才需要设置见下面的注释
)JDOM输出UTF文件乱码的根本原因并非在JDOMAPI而是在JDK
具体描述
JDOM的输出类XMLOutputter有两个output接口除了都具有一个Document参数外分别接受Writer和OutputStream参数
这给我们一个错觉两个接口可以任意使用
首先我们用output(docSystemout)来做测试此时得到乱码
然后我们改为output(docnew PrintWriter(Systemout))来测试输出不是乱码
也就是说在控制台的时候一定要用一个Writer接口包装一下
然后我们用output(docnew FileWriter(path))来做测试结果却得到乱码
然后我们改为output(docnew FileOutputStream(path))来测试输出不是乱码
也就是说在输出文件的时候一定要用一个OutputStream接口包装一下
疯了吧?呵呵很搞笑是吧经过到JDOM的源码中调试发现没有任何问题问题出在了JDK里面
JDK内的对应接口处理
)PrintWriter类有参数为OutputStream的构造方法因此可以从Systemout包装到PrintWriter
)FileWriter类没有参数为OutputStream的构造方法因此不能从FileOutputStream包装到FileWriter
)如果PrintWriter类用了参数为Writer的构造方法(Writer实现为FileWriter)最后输出也是乱码
)如果用一个FileOutputStream来包装一个控制台输出也是乱码
因此对于JDK内的各种输出体系各种InputStreamOutputStreamreader和writer要充分认识否则极容易出现一些意想不到的问题
测试的JDOM版本
测试代码
import javaioFile;
import javaioFileOutputStream;
import javaioFileWriter;
import javaioPrintWriter;
import javautilHashMap;
import orgjdomDocument;
import orgjdomElement;
import orgjdomoutputFormat;
import orgjdomoutputXMLOutputter;
public class BuildXML {
public static void main(String[] args) throws Exception{
File xmlfile=new File(C:\\EditTemp\\xml\\abcxml);
//中文问题 //GBK 是没有问题的但UTF就是有问题的
//原因
//)对于磁盘文件必须使用输出流 FileOutputStream
// FileWriter out=new FileWriter(xmlfile);会导致乱码
//)对于控制台输出则必须使用PrintWriter如果直接使用Systemout也会出现乱码
// PrintWriter out=new PrintWriter(Systemout);
FileOutputStream out=new FileOutputStream(xmlfile);
Element eroot=new Element(root);
erootaddContent((new Element(code))addContent(代码));
erootaddContent((new Element(ds))addContent(数据源));
erootaddContent((new Element(sql))addContent(检索sql));
erootaddContent((new Element(order))addContent(排序));
Document doc=new Document(eroot);
XMLOutputter outputter = new XMLOutputter();
//如果不设置format仅仅是没有缩进xml还是utf的因此format不是必要的
Format f = FormatgetPrettyFormat();
//fsetEncoding(UTF);//default=UTF
outputtersetFormat(f);
outputteroutput(doc out);
outclose();
}
}