[java]代码库
/**
* 使用JAXP将DOM对象写到XML文档里
* @param doc DOM的文档对象
* @param fileName 写入的XML文档路径
* @param encoding XML文档的编码
* @throws TransformerException
*/
public static String domDocToFile(Document doc, String fileName, String encoding)
throws TransformerException {
// 首先创建一个TransformerFactory对象,再由此创建Transformer对象。
// Transformer类相当于一个XSLT引擎。通常我们使用它来处理XSL文件,
// 但是在这里我们使用它来输出XML文档。
TransformerFactory tFactory = TransformerFactory.newInstance();
Transformer transformer = tFactory.newTransformer();
// 获取Transformser对象的输出属性,亦即XSLT引擎的缺省输出属性,是java.util.Properties对象
Properties properties = transformer.getOutputProperties();
// 设置新的输出属性:输出字符编码为GB2312,这样可以支持中文字符,
// XSLT引擎所输出的XML文档如果包含了中文字符,可以正常显示。
properties.setProperty(OutputKeys.ENCODING, "GB2312");
// 这里设置输出为XML格式,实际上这是XSLT引擎的默认输出格式
properties.setProperty(OutputKeys.METHOD, "xml");
transformer.setOutputProperties(properties);
// 创建一个DOMSource对象,该构造函数的参数可以是一个Document对象
DOMSource source = new DOMSource(doc);
// 创建XSLT引擎的输出对象,这里将输出写如文件
File file = new File(fileName);
StreamResult result = new StreamResult(file);
// 执行DOM文档到XML文件的转换
transformer.transform(source, result);
// 将输出文件的路径返回
return file.getAbsolutePath();
}