jsp 实现在线人数统计

128阅读 0评论2008-09-09 akQFQW2geCOxgJG
分类:

    首先写个类:

    import javax.servlet.*;

    import javax.servlet.http.*;

    public class SessionCounter implements HttpSessionListener {

    private static int activeSessions = 0;

    public void sessionCreated(HttpSessionEvent se) {

    activeSessions++;

    }

    public void sessionDestroyed(HttpSessionEvent se) {

    if(activeSessions > 0)

    activeSessions--;

    }

    public static int getActiveSessions() {

    return activeSessions;

    }

    }

    然后配置web.xml

 

   

   

    xmlns=""

    xmlns:xsi=""

    xsi:schemaLocation="

    ">

    ****************************************

   

   

   

    SessionCount.SessionCounter (注意此处)

   

   

    *****************************************

   

 

 

[1]  

【责编:landy】

--------------------next---------------------

上一篇:用J2SE 1.4进行Internet安全编程(三)
下一篇:JSP高访问量下的计数程序