我正在以一种简单的方式打印一个很长的HTML页面:
try {
PrintWriter out = httpServletResponse.getWriter();
out.println("LARGE DATA...");
out.flush();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
但每次浏览器都会在浏览器中超时。我知道我可以通过启动服务器来修复它,但是在代码中是否有更多优化方法?或者我做错了什么?