08-网站访问计数器(jsp内置对象)

来源:互联网 发布:qq三国淘宝游戏币 编辑:程序博客网 时间:2024/05/18 13:08
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><html><head><title>application内置对象实现网站计数器</title></head><body><%Object o= application.getAttribute("count");if (o == null) {application.setAttribute("count", 1);} else {application.setAttribute("count", (Integer) o + 1);}%><body>您是第${applicationScope.count}位访客.....</body></body></html>

原创粉丝点击