代码:

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();

 

相关文章:

  • 2022-02-25
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-03
  • 2022-01-08
  • 2022-12-23
  • 2022-01-14
  • 2021-08-19
  • 2021-05-06
相关资源
相似解决方案