JSP application.getAttribute()方法:獲取屬性值

2020-07-16 10:04:51
該方法用於獲取由 name 指定名字的 application 物件的屬性的值。

語法:

getAttribute(String name)

引數說明:
  • name:要獲取的屬性的名稱。

返回值:
  • 指定屬性的屬性值。

範例

在 JSP 頁面中獲取屬性名稱為 user 的屬性值,關鍵程式碼如下:
<%
  application.getAttribute("user");
%>

典型應用

在 JSP 頁面中將儲存在 application 物件中的屬性輸出到頁面
<body>
  <%
     application.setAttribute("userName","大熊貓");//在application物件中儲存屬性
     out.println("儲存在application裡的屬性值為:"+application.getAttribute("userName"));//在頁面中輸出屬性資訊
   %>
</body>