response.addHeader("Content-Disposition", "attachment;filename=" + new String(filename.getBytes()));
            
            OutputStream out = new BufferedOutputStream(response.getOutputStream());
            response.setContentType("application/octet-stream");
            .......            out.flush();
            out.close();下载完成后,需要刷新页面,我使用spring的ModelAndView mav = new ModelAndView();
mav.setViewName("ListController.action");执行后就会报错:
    getOutPutStream() has already been called for this response..不知道如何解决,希望大家帮忙啊. 谢谢.