java中的早期冲洗
在java中,如何尽早将内容刷新到浏览器?我认为 GZipOutputStream 正在缓冲内容。
是否有 GZIPOutputStream
到 gzip
的替代方案。该替代方案应该能够尽早将内容刷新到浏览器。
In java, how can I flush content early to the browser? I think GZipOutputStream
is buffering the content.
Are there any alternatives to GZIPOutputStream
to gzip
. That alternative should be able to flush content early to the browser.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将内容刷新到流中,您可以使用flush()。不做任何缓冲的流不需要被flush()ed。
您知道您的浏览器会对未完整发送的文件执行任何操作吗?
To flush content to a stream you can use flush(). Streams that don't do any buffering don't need to be flush()ed.
Do you know that your browser will do anything with files which have not been sent in full?