标签: java stream
有两种用例:
data = []
在第二种情况下,我是否总是需要关闭Writer?或者我可以像第一个一样简单吗?
答案 0 :(得分:0)
您从response获得作者,所以通常在执行此操作时不应调用close()。 servlet容器将为您关闭。
response
close()
如果您在此处预先关闭作者,某些功能将无效。
例如,您的Filter可能会抛出IllegalStateException: the output stream has already been closed
Filter
IllegalStateException: the output stream has already been closed