代码:
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();
时间: 2024-10-28 02:22:00