文章詳情頁
JSP中out對象的實例詳解
瀏覽:162日期:2022-06-07 11:33:16
JSP中out對象的實例詳解
一 什么是緩沖區
緩沖區:Buffer,所謂緩沖區就是內存的一塊區域用來保存臨時數據。
二 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>
五 運行結果
如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
標簽:
JSP
相關文章:
排行榜