标签:
代码:
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();
将ByteArrayOutputStream类型变量中的数据存储到文件中
标签:
原文地址:http://www.cnblogs.com/xiandedanteng/p/4178490.html