首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

保留xml文档

2012-10-25 
保存xml文档xml 文件 放在 web-inf下的 classes目录下???private? static? String? webInfoPath config

保存xml文档

xml 文件 放在 web-inf下的 classes目录下?

?

?private? static? String? webInfoPath = "config.xml";

?

? /**
? * 保存XML文档
? *
? * @param doc
? * @throws IOException
? */
?
??? public static void saveDocument(Document doc) throws IOException {
??? ?
???? OutputFormat format = OutputFormat.createPrettyPrint();
????
???? URL?? url?? =?? Thread.currentThread().getContextClassLoader().getResource(webInfoPath);
????
???? XMLWriter writer = new XMLWriter(
???? ??
??new FileOutputStream(url.getFile()), format);
????
???? writer.write(doc);
????
???? writer.close();
????
}

热点排行