JSP 에서 out 대상 의 인 스 턴 스 상세 설명

2448 단어 JSPout
JSP 에서 out 대상 의 인 스 턴 스 상세 설명
버퍼
버퍼:버퍼 란 임시 데 이 터 를 저장 하 는 메모리 의 영역 입 니 다.
아웃 대상
out 대상 은 JspWrite 류 의 인 스 턴 스 로 브 라 우 저 에 콘 텐 츠 를 출력 하 는 데 자주 사용 되 는 대상 입 니 다.
상용 방법

네 가지 실례

<%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
  <base href="<%=basePath%>" rel="external nofollow" >
  
  <title>My JSP 'index.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">  
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" >
    -->
 </head>
 
 <body>
  <h1>out    </h1>
  <%
    out.println("<h2>   </h2>");
    out.println("     <br>");
    out.println("     <br>");
    out.flush();
    //out.clear();//       。
    out.clearBuffer();//        。
    out.println("     <br>");
    out.println("     <br>");
  
  %>
         :<%=out.getBufferSize() %>byte<br>
           :<%=out.getRemaining() %>byte<br>
             :<%=out.isAutoFlush() %><BR>  
 </body>
</html>
 5 운행 결과 

 
궁금 한 점 이 있 으 시 면 메 시 지 를 남기 거나 본 사이트 의 커 뮤 니 티 에 가서 토론 을 교류 하 세 요.읽 어 주 셔 서 감사합니다. 도움 이 되 셨 으 면 좋 겠 습 니 다.본 사이트 에 대한 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기