输出将多个文件流式传输到zip文件中

时间:2017-05-25 05:35:31

标签: java angularjs

嗨,我使用solr,angularjs,Jax-rs和java生成csv格式的报告。输入流已包含csv响应,因为我们在查询solr时指定了wt = csv。从每个输入Stream创建的csv的大小可能是300mb。在java层代码中有一些类似的东西:

enter code here
     InputStream is1;  
     InputStream is2;
     // for is1 let  file  is csv1
     // for is2  let file is  csv2
     // csvzip is the csv created form both two files 
     // now csvzip need to be downloaded through a popup

在内存中创建大尺寸文件和zip文件肯定不是一个好方法。 有没有办法解决这个问题?

0 个答案:

没有答案