JSP教程--Application 的應用
在前一篇裡我們講了在JSP 中使用session 來儲存每個使用者的私人資訊,但有時伺服器需要管理面向整個應用的參數,使得每個客戶都能獲得同樣的參數值。那在JSP中應怎麼辦呢?和Session 一樣, JSP使用Application 對象,操作的方法和Session "Times New Roman""一樣。
其API 使用如下:
Application .setAttribute("Item", ItemValue); //設定一個應用變數
Integer i=(Integer) Application.getAttribute("ItemName"); // 得到//item
現以一個簡單統計線上人數的的例子來說明Application的應用(這裡不考慮離開的情況),init.jsp(初始化),count.jsp( 統計總人數並輸出)。
init.jsp
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<BODY BGCOLOR="#FFFFFF">
<%
application.setAttribute("counter",new Integer(0));
out.println(application.getAttribute("counter"));
%>
</BODY>
</HTML>
count.jsp
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<%
Integer i=(Integer)application.getAttribute("counter");
i=new Integer(i.intValue()+1);
application.setAttribute("counter",i);
out.println((Integer)application.getAttribute("counter"));
%>
</BODY>
</HTML>