为了你的“重复”的狂热分子,对这样的权利类似的问题在这里 。 不同的是,我画一个生动的例子,我无法理解的输出。
对于文档的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声明之前。 所以在上面的例子中,究竟发生了什么?