jsp application对象使用 统计访问人数

来源:互联网 发布:达示数据 编辑:程序博客网 时间:2024/04/29 18:21
<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Insert title here</title></head><body>  <%  Integer count=(Integer) application.getAttribute("count");  if(count!=null){  count++;  }else{  count=1;  }   application.setAttribute("count", count);  %>   有<%=count %>人访问你的网站</body></html>

0 0