JSP內建對象—-out&&pageContext

來源:互聯網
上載者:User

(一)out對象

out對象代表一個頁面輸出資料流,通常用於在頁面上輸出變數值及常量。一般在使用輸出運算式的地方,都可以使用out對象來達到同樣的效果。

servlet中:  printWriter  out=response.getWriter()

out.println();

所有使用out的地方,都可以使用輸出運算式來代替,而且使用輸出運算式更加簡潔  <%=·······%>運算式的本質就是out.write(·······)

(二)pageContext對象

 代表頁面上下文,該對象主要用於訪問JSP之間共用資料。使用pageContext可以訪問page,request,session,application範圍的變數。

getAttribute(String name):取得page範圍內的屬性。

getAttribute(String name,int scope) 取得指定範圍內的name屬性,其中scope可以是如下四個值:

PageContext.PAGE_SCOPE   對應page範圍                                 1

PageContext.REQUEST_SCOPE對應request範圍                       2

PageContext.SESSION_SCOPE 對應session範圍                       3

PageContext.APPLICATION_SCOPE對應於application範圍       4

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.