向servlet response输出流实时输出日志
2023-12-26 18:37:15
@RequestMapping("/test")
public void test(HttpServletResponse response) {
response.setCharacterEncoding("utf-8");
response.setContentType("text/plain");
response.setBufferSize(50);
try (PrintWriter printWriter = response.getWriter()) {
for (int i = 0; i < 100; i++) {
Thread.sleep(300);
printWriter.println(StrUtil.fillAfter("xxx",' ', 50));
printWriter.flush();
}
} catch (Exception e) {
log.error("syncAlc", e);
}
}
这里的关键就在于设置BufferSize,并且在输出后调用flush()方法。
文章来源:https://blog.csdn.net/AS_JOPO/article/details/135226387
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!