jsp內建對象入門(6) application對象詳解

來源:互聯網
上載者:User

application是javax.servlet.ServletContext介面的執行個體,實際上表示的是整個Servlet的上下文。

application對象的常用方法:

以上方法是application的特色方法,當然,除了以上的三個方法之外,對於屬性的增加、取得和刪除也有其應用的,setAttribute()、getAttribute()、removeAttribute()。

我們來一塊學習表格中的三個方法。

取得絕對路徑

取得一個項目的虛擬目錄對應的絕對路徑就要使用getRealPath()方法。一個例子看一下這個方法的使用和效果。

application_01.jsp     <%@ page language="java" contentType="text/html" pageEncoding="utf-8" %>    <html>    <head>    <title>web開發</title>    </head>    <body>    <%         String path=application.getRealPath("/");     %>    <h3>真實路徑:<%=path %></h3>    </body>    </html>

運行一下可以發現真實路徑是我們的項目的路徑。但是在這個地方需要注意的是,application的這個操作本身是ServletContext介面的執行個體,但是在jsp中,還有一個很常用的方法的功能可以完全取得這個方法。那就是getServletContext()方法。下面一個程式看一下這個方法的使用。

<%@ page language="java" contentType="text/html" pageEncoding="utf-8" %>    <html>    <head>    <title>web開發</title>    </head>    <body>    <%         String path=getServletContext().getRealPath("/");     %>    <h3>真實路徑:<%=path %></h3>    </body>    </html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.