主頁 > 知識庫 > JSP中out對象的實(shí)例詳解

JSP中out對象的實(shí)例詳解

熱門標(biāo)簽:電銷機(jī)器人免培訓(xùn) 南通通訊外呼系統(tǒng)產(chǎn)品介紹 如何看懂地圖標(biāo)注點(diǎn) 潤滑油銷售電銷機(jī)器人 外呼系統(tǒng)使用方法 自繪地圖標(biāo)注數(shù)據(jù) 給地圖標(biāo)注得傭金 海外圖書館地圖標(biāo)注點(diǎn) 電話機(jī)器人需要使用網(wǎng)絡(luò)嗎

JSP中out對象的實(shí)例詳解

一 什么是緩沖區(qū)

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

二 out對象

out對象是JspWrite類的實(shí)例,是向?yàn)g覽器輸出內(nèi)容常用的對象。

三 常用方法

四 實(shí)例

%@ 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ū)大小:%=out.getBufferSize() %>bytebr>
    緩沖區(qū)剩余大?。?=out.getRemaining() %>bytebr>
    是否自動清空緩沖區(qū):%=out.isAutoFlush() %>BR>  
 /body>
/html>

 五 運(yùn)行結(jié)果 


 

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

您可能感興趣的文章:
  • 深入淺析Jsp中 out.print 和 out.write 的區(qū)別
  • tomcat6下jsp出現(xiàn)getOutputStream() has already been called for this response異常的原因和解決方法

標(biāo)簽:貸款邀約 南京 黃石 廣州 內(nèi)江 大連 樂山 銅川

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP中out對象的實(shí)例詳解》,本文關(guān)鍵詞  JSP,中,out,對象,的,實(shí)例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《JSP中out對象的實(shí)例詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于JSP中out對象的實(shí)例詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章