<%
//读取记录
Cookie[] ck=request.getCookies();
if(ck!=null){
for(int i=0;i
out.write(ck[i].getValue()+"
");
}
}
}
// 统计人数
Set set=new HashSet();
set.add("s");
String s=request.getRemoteAddr();
int count=0;
if(s.equals(set)){
Object o=application.getAttribute("count");
if(o!=null){
count=Integer.parseInt(o.toString());
application.setAttribute("count",count);
}
}else{
count++;
application.setAttribute("count",count);
}
%>
查询记录:
统计访问人数:<%=count%>