Java web ch03_14_applicatin.jsp

Posted 蒙查查

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java web ch03_14_applicatin.jsp相关的知识,希望对你有一定的参考价值。

<%@ 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>统计网站访问人数及其当前在线人数</title>
</head>
<body>
<%! Integer yourNumber=new Integer(0); %>
<% if(session.isNew()){ //如果是一个新的会话
Integer number=(Integer) application.getAttribute("Count");
if(number == null) //如果是第1个访问网站
{ number = new Integer(1); }
else
{ number = new Integer(number.intValue()+1);}
application.setAttribute("Count",number);
yourNumber = (Integer)application.getAttribute("Count");
}
%>
欢迎访问本站,您是第 <%=yourNumber%>个访问用户。
</body>
</html>

 

 

 

 

 

 

运行

 

 

 

 

 

在浏览器再运行

 

以上是关于Java web ch03_14_applicatin.jsp的主要内容,如果未能解决你的问题,请参考以下文章

Java web ch03_11_loginReceive.jsp

Java web ch03_11_loginMiss.jsp

Java web ch03_11_userLogin.jap

Java web ch03_2_javalet.jsp

Java web ch03_4_include.jsp

Java web ch02_9