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

异步回到WebService时在本地输出XML,用以备份

2012-10-28 
异步返回WebService时在本地输出XML,用以备份private static void writeToSoapBodyFile(String fileName,

异步返回WebService时在本地输出XML,用以备份

private static void writeToSoapBodyFile(String fileName, CIAsset ciAsset)throws JAXBException, IOException {File dir = new File(soapBody);if (!dir.exists()) {dir.mkdirs();}JAXBContext ctx = JAXBContext.newInstance(CIAsset.class);Marshaller m = ctx.createMarshaller();m.setProperty("jaxb.formatted.output", true);File file = new File(soapBody + fileName);OutputStream os = new FileOutputStream(file);m.marshal(ciAsset, os);os.flush();os.close();}

热点排行