JSP教程–Application 的應用

來源:互聯網
上載者:User

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>

相關文章

聯繫我們

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