out对象:
out的类型:JspWriter
out作用就是向客户端输出内容----out.write()
out缓冲区默认8kb 可以设置成0 代表关闭out缓存区 内容直接写到respons缓存区
<%@ page buffer="0kb"%> 设置out对象的缓存区大小(默认8kb)
out.write()--->out缓存区--->response缓存区
response.getWriter().write()--->response缓存区
demo.jsp:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" buffer="8kb"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
aaaaaaaaaaaaaaaaaaaaaaaaaaaaa <%-- 通过out.write输出 --%>
<%
out.write("bbbbbbbbbbbbbbb"); // 写入out缓存区中
response.getWriter().write("cccccccccccccc"); // 直接写入response缓存区中 (优先输出)
%>
<%="dddddddddddddddddd" %> <%-- 通过out.write输出 --%>
</body>
</html>