我在java中生成xml在保存时,xml文件默认是UTF-8编码,现在我想将xml文件的编码方式改为GB2312怎么办呢?

2024-12-22 10:46:17
推荐回答(2个)
回答1:

这个问题我已经解决。
两种方式:OutputFormat format = new OutputFormat("gbk");
XMLWriter writer;
try {
writer = new XMLWriter(new FileOutputStream(path),format);
第二种:
Document doc = DocumentHelper.createDocument();
doc.setXMLEncoding("gb2312");
doc.aslXML();

回答2:

亲 这问题你解决了吗,我也遇到了 求答案