java.lang.IllegalStateException: getOutputStream() has already been called for this response

BufferedInputStreamin=null;BufferedOutputStreamout=null;if(printFile==null){thrownewW... BufferedInputStream in = null;
BufferedOutputStream out = null;
if (printFile == null) {
throw new WebException("传入参数printFile文件为空!");
}
try {
in = new BufferedInputStream(new FileInputStream(printFile
.getPath()));
if (printFile.getName().substring(
printFile.getName().lastIndexOf(".")).equals(".xls")) {

response.setContentType("application/vnd.ms-excel");
filename = new String(filename
.getBytes("GBK"), "ISO8859_1").trim()+".xls";
response.setHeader("Content-Disposition", streamType
+ ";filename=" + filename);
}
out = new BufferedOutputStream(response.getOutputStream());
byte[] buf = new byte[1024];
while ((in.read(buf)) > 0) {
out.write(buf);
}
out.flush();
} catch (IOException e) {
throw new WebException("生成response出错!", e);
} catch (Exception e) {
throw new WebException("生成response出错!", e);
} finally {
if (in != null) {
try {
in.close();
} catch (IOException ex) {
System.out.print("ouputStream.close() fail");
}
}
if (out != null) {
try {
out.close();
} catch (IOException ex) {
System.out.print("baos.close() fail");
}
}
if(printFile!=null){
printFile.delete();
}
}
展开
 我来答
zuchunlei521
2015-01-05 · TA获得超过298个赞
知道小有建树答主
回答量:105
采纳率:100%
帮助的人:88.3万
展开全部
我想知道这个方法执行完以后,有没有进行请求转发,这个错误一般是伴随在请求转发时发生的。
---------------------------------------------------------------------------------------------------------------------
以下是我总结的有关Response对象字节流与请求转发之间的异常说明。只供参考!

情况1: 获得响应对象的字节流response.getOutputStream(),但是不进行任何的操作,也不调用其close()方法,

此时,在进行请求转发时,会转发成功。
但是在转发到的jsp页面时,会获得其response的字符流,此时因为response已经获得了其字节流,所以会出现以下异常:
getOutputStream() has already been called for this response!

情况2: 获得响应对象的字节流response.getOutputStream(),但是不进行任何的操作,但是调用了该字节流的close()方法,
此时,在进行请求转发时,不会成功。 因为请求转发器会判断response的字节流是否已提交,如果已提交,则会出现以下异常:
Cannot forward after response has been committed!

结论:在整个请求过程中,如果需要进行请求转发,则不能够获得响应对象的字节流!response.getOutputStream()
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
y515789
2015-01-05 · TA获得超过202个赞
知道小有建树答主
回答量:138
采纳率:100%
帮助的人:88.5万
展开全部
按报错来说了 流没有关闭。你先看看 我再看看代码

在out.fulsh();后面添加
out.clear();
out = pageContext.pushBody();
追问

不行

out.clear();
out = pageContext.pushBody();这应该是在JSP页面中写的吧,写JAVA代码中会报错

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式