getOutputStream() has already been called for this response

下载文件的时候报错!!!
response这个对象是Servlet自己管理的,之所以出现上面的错误:
1.网上都说跟Output之类其他的输出流相互排斥了。
2.也可能是多次调用那个Struts里面定义的方法。
3.最后查出原因:Struts方法之间调用引起的。
因为:每个方法都返回的是一个ActionForward对象,而response是ActionForward对象参数,所以就会使response冲突!
例如:
public AcitionForward AAA(HttpServletResponse response){
       BBB();
       return mapping.findForward(".....");
}
//下载操作
public ActionForward BBB(HttpServletResponse response){
       .....
       return mapping.findward("....");//返回一个ActionForward对象
}

上面写会报错,这么写就不会了!
public AcitionForward AAA(HttpServletResponse response){
       if(null == BBB()){//加一个判断
            return null;
       }
}
//下载操作(凡是用到response的操作)
public ActionForward BBB(HttpServletResponse response){
       .....
       return null;//必须返回一个NULL
}

突破点:response这个封装的对象里面有个useingOutputStream标志,boolean型 所以就是根据这个来查getOutputStream()是否重复调用的 

你可能感兴趣的:(struts,servlet,idea)