都继承自java.io.writer类
JspWriter在Jsp页面上直接用out对象输出,也可以直接用pageContex.getOut()得到out对象
PrintWriter必须通过response.getwriter()得到
2.在Jsp页面上用两种方法同时输出数据,PrintWriter中的数据会先输出
例如:
新建test.jsp页面
<%
out.println("out");
JspWriter out1 = pageContext.getOut();
if(out == out1 )
{
out.println("out==out1");
}
else
{
out.println("out!=out1");
}
PrintWriter pw = response.getWriter();
pw.write("pw writer");
%>
运行结果为
pw writer out out==out1 This is my JSP page.
原因:
out对象相当于插入到了PrintWriter前面的缓冲区中.out对象满足一定条件时
,才会调用PrintWriter对象的print()方法,把out缓冲区中的内容输出到浏览器端
如果想让上面的代码的按代码的先后顺序输出可以写成:
out.flush();
刷新缓存区即可
则输出结果变为
out out==out1 pw writer This is my JSP page
0 0 0
(请您对文章做出评价)
JspWriter在Jsp页面上直接用out对象输出,也可以直接用pageContex.getOut()得到out对象
PrintWriter必须通过response.getwriter()得到
2.在Jsp页面上用两种方法同时输出数据,PrintWriter中的数据会先输出
例如:
新建test.jsp页面
<%
out.println("out");
JspWriter out1 = pageContext.getOut();
if(out == out1 )
{
out.println("out==out1");
}
else
{
out.println("out!=out1");
}
PrintWriter pw = response.getWriter();
pw.write("pw writer");
%>
运行结果为
pw writer out out==out1 This is my JSP page.
原因:
out对象相当于插入到了PrintWriter前面的缓冲区中.out对象满足一定条件时
,才会调用PrintWriter对象的print()方法,把out缓冲区中的内容输出到浏览器端
如果想让上面的代码的按代码的先后顺序输出可以写成:
out.flush();
刷新缓存区即可
则输出结果变为
out out==out1 pw writer This is my JSP page
0 0 0
(请您对文章做出评价)