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>