JSP Request.getContextPath()方法:返回當前Web所在的目錄

2020-07-16 10:04:54
該方法返回當前 Web 所在的目錄。

語法:

getContextPath()

返回值:返回當前 Web 所在的目錄。

範例

輸出當前 Web 所在的目錄,關鍵程式碼如下:
<%
  out.print(request.getContextPath());
%>