问题描述
最近才开始学jsp,按照书上的例子编写一个基于jspsqlserver的bbs遇到下面的问题使用类来统计在线人数,类文件编译通过。但是在线人数一直显示为0。这是为什么?以下是源码Session_Counter.javapackagecom.ch9;importjavax.servlet.*;importjavax.servlet.http.*;publicclassSession_CounterimplementsHttpSessionListener{privatestaticintactiveSessions=0;//有新用户访问,计数器加1publicvoidsessionCreated(HttpSessionEventse){activeSessions++;}//有用户离开,计数器减1publicvoidsessionDestroyed(HttpSessionEventse){if(activeSessions>0){activeSessions--;}}//获取计数器的值publicstaticintgetActiveSessions(){returnactiveSessions;}}jsp///////////////////////////////////////////////////////////////////////<%@pagecontentType="text/html;charset=gb2312"language="java"%><jsp:useBeanscope="page"id="email"class="com.ch9.email"/><jsp:useBeanscope="page"id="counter"class="com.ch9.Session_Counter"/><%//获取当前用户信息Strings_UserName=(String)session.getAttribute("UserName");//判断当前用户是否是登录用户booleanisLogin=false;//默认为未登陆if(s_UserName!=null&&s_UserName!=""){isLogin=true;email.setEmailReceiver(s_UserName);}%><!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"><metahttp-equiv="refresh"content="300"><title>欢迎光临风沙论坛</title><linkrel=stylesheettype=text/csshref="./lib/bbs.css"><scriptlanguage="javaScript">functionremoveline(){<!--判断浏览器是关闭还是刷新,因为刷新也会调用onunload-->if(event.clientX<0&&event.clientY<0){document.write('<iframewidth="100"height="100"src="remove_session.jsp"></iframe>');<!--是无提示的关闭浏览器-->document.all.WebBrowser.ExecWB(45,1);}}</script></head><bodybgcolor="#b3b7e6"topmargin="0"onUnload="removeline()"><p> 时间[<%=(newjava.util.Date()).toLocaleString()%>] 在线人数[<fontcolor="#FF0000"><%=counter.getActiveSessions()%></font>]////////////////////////////这里页面一直输出为0///////////////////// 账号[ <%if(isLogin)out.println(s_UserName);elseout.println("Guest");%>] <%//如果是登录用户,则获取该用户收件箱中的总邮件数和未读邮件数,并将结果显示到页面上if(isLogin){out.println("<ahref='./login/receive_box.jsp'target='mainFrame'>");out.println("信箱[");out.println(email.rec_email_count());inti=email.new_email_count();if(i>0){out.println("<fontcolor=red>(新信件"+i+")</font>");}out.println("]</a>");}%></p></body></html>
解决方案
解决方案二:
哎,没分没人看,伤心
解决方案三:
up!
解决方案四:
你可以上网搜下源代码啊,看下哪些是要注意的地方咯
解决方案五:
up!
解决方案六:
是不是还要设置web.xml啊
解决方案七:
监听器要在web.xml文件中配置