setAttribute(String name,Object object)
引數說明:<% application.setAttribute("user","lzw"); Date now = new Date(); application.setAttribute("now",now); %>
<body> <p>application實現簡單計數器<br> <% Integer count = null; //定義用於表示計數器的Integer物件 synchronized(application){ //同步處理,保證只有一個進程可存取本方法 count = (Integer)application.getAttribute("counter"); //獲取儲存在application物件中的資訊 if(count==null) //判斷該變數是否為空 count = new Integer(0); count = new Integer(count.intValue()+1); //將變數進行加1處理 application.setAttribute("counter",count); //將變數儲存在application物件中 } %> <font size=6 color="blue">您好!歡迎存取本站,您是第<%=count%>位訪客</font>> </body>執行結果如下: