黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

JSP中out對象的實例詳解

jsp中out對象的實例詳解

一 什么是緩沖區(qū)

緩沖區(qū):buffer,所謂緩沖區(qū)就是內(nèi)存的一塊區(qū)域用來保存臨時數(shù)據(jù)。

二 out對象

out對象是jspwrite類的實例,是向瀏覽器輸出內(nèi)容常用的對象。

三 常用方法

四 實例

<%@ 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內(nèi)置對象</h1>
  <%
    out.println("<h2>靜夜思</h2>");
    out.println("床前明月光<br>");
    out.println("疑是地上霜<br>");
    out.flush();
    //out.clear();//這里會拋出異常。
    out.clearbuffer();//這里不會拋出異常。
    out.println("舉頭望明月<br>");
    out.println("低頭思故鄉(xiāng)<br>");
  
  %>
    緩沖區(qū)大?。?lt;%=out.getbuffersize() %>byte<br>
    緩沖區(qū)剩余大?。?lt;%=out.getremaining() %>byte<br>
    是否自動清空緩沖區(qū):<%=out.isautoflush() %><br>  
 </body>
</html>

 五 運行結果 


 

如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

相關文章