getResponse的getWriter()方法
连续两次输出流到页面的时候,第二次的流会包括第一次的流,所以可以使用将response.reset或者resetBuffer的方法。
reset():
Clears any data that exists in the buffer as well as the status code and headers. If the response has been committed, this method throws an IllegalStateException.
resetBuffer():
Clears the content of the underlying buffer in the response without clearing headers or status code. If the response has been committed, this method throws an IllegalStateException.
response.reset()的使用有一个条件受限:response的任何打开流关闭之后都不能再reset .
本文介绍在Web应用中如何处理连续两次使用getResponse的getWriter方法输出流到页面时出现的问题,并探讨了response.reset与resetBuffer方法的用法及注意事项。
3735

被折叠的 条评论
为什么被折叠?



