java.lang.IllegalStateException: getOutputStream() has already been called 解决办法

今天上班做从数据库查询图片到jsp页面显示,结果报java.lang.IllegalStateException: getOutputStream() has already been called 错误,折腾了将近半天的时间才弄出来。

在网上查阅了很多资料基本上都是一家之言,虽然说得都对,不过没有源码。所以我写下来供大家查阅。废话不多说,直接贴代码:


1、jsp页面(注:我用的是springMVC)

投诉举报流程图


2、后台java Action方法:

/**
* 投诉举报流程图

* @author wangmingyuan
* @return ModelAndView
* @serialData 2016年11月24日下午4:16:05
*/
@RequestMapping(value = "/complaintreportpicture")
public ModelAndView complaintreportpicture(String proId,HttpServletRequest request,HttpServletResponse response,Model model) {
Map vdata = new HashMap();
InputStream stream =  wfComplaintReportService.findProcessPic("1");

try {
OutputStream output=response.getOutputStream();
int len=-1;  
            byte[]buf=new byte[1024];  
            while((len=stream.read(buf,0,1024))!=-1){  
            output.write(buf,0,len); 
            }
            model.addAttribute("stream",stream);
            output.flush();
            return null;  
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}  
return super.load("workflow/complaintreport/complaint_picture", vdata);
}



以上经过测试没问题!!


你可能感兴趣的:(小bug解决方案)