码迷,mamicode.com
首页 > 其他好文 > 详细

Activiti导出模型文件xml(xml文件超过10K)

时间:2017-12-07 17:21:23      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:attach   isp   rtb   get   new   content   xml文件   导出   buffer   

Activiti导出超过10K的xml文件时,response 要在获取输出流之前设置header格式

原代码为:

ByteArrayInputStream in = new ByteArrayInputStream(exportBytes);

IOUtils.copy(in, response.getOutputStream());

response.setHeader("Content-Disposition", "attachment; filename="+ filename);

response.flushBuffer();

修改后,代码为:

ByteArrayInputStream in = new ByteArrayInputStream(exportBytes);

response.setHeader("Content-Disposition", "attachment; filename="+ filename);

IOUtils.copy(in, response.getOutputStream());

response.flushBuffer();

Activiti导出模型文件xml(xml文件超过10K)

标签:attach   isp   rtb   get   new   content   xml文件   导出   buffer   

原文地址:http://www.cnblogs.com/zhaoyuq/p/7999665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!