将ByteArrayOutputStream类型变量中的数据存储到文件中

 

代码:

File zipFile=new File("c:\\1.zip");
ByteArrayOutputStream byteOSZip = new ByteArrayOutputStream(4096); service.copyIHEReportZipOutputStream(id, byteOSZip);// 这里是对byteOSZip的处理,和业务有关,你应该把这里修改成自己的代码 FileOutputStream fos2 = new FileOutputStream(zipFile); byteOSZip.writeTo(fos2); fos2.close();

 

posted @ 2014-12-22 16:33  逆火狂飙  阅读(8376)  评论(0编辑  收藏  举报
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东