对于所有“重复”的狂热分子,这里有一个关于 SO 的类似问题。不同之处在于我画了一个我无法理解输出的生动示例。
JspWriter和PrintWriter的文档说有两个区别:1. JspWriter 可以抛出异常, PrintWriter 不应该这样做。2. JspWriter 在后台使用 PrintWriter,但由于默认情况下 JSP 页面是缓冲的,因此不会创建 PrintWriter 直到the buffer is flushed
- 无论在 JSP 页面的上下文中意味着什么。我不确定我是否理解了最后一部分。考虑这个 JSP 页面:
<%@page import="java.io.PrintWriter"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JspWriter versus PrintWriter</title>
</head>
<body>
<p>I should be row one.</p>
<%
out.println("<p>JspWriter said: I should be the second row.</p>");
PrintWriter pw = response.getWriter();
pw.println("<p>PrintWriter said: I should be the third row.</p>");
%>
<p>I should be the fourth row.</p>
</body>
</html>
它产生以下输出:
PrintWriter said: I should be the third row.
I should be row one.
JspWriter said: I should be the second row.
I should be the fourth row.
如您所见,JspWriter 按照我的预期将他的字符串输出到浏览器。但是 PrintWriter 在所有其他内容发送到浏览器之前输出他的字符串。如果我们检查发送到浏览器的源代码,PrintWriter 的字符串作为第一行发送,在 DOCTYPE 声明之前。那么在上面的例子中,究竟发生了什么?