读书人

response.reset()跟response.resetBuf

发布时间: 2012-10-07 17:28:51 作者: rapoo

response.reset()和response.resetBuffer()

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?.

读书人网 >编程

热点推荐