1.用session超時(shí),session為null就表示下線了
成都創(chuàng)新互聯(lián)成都網(wǎng)站建設(shè)定制網(wǎng)站,是成都網(wǎng)站營(yíng)銷公司,為成都辦公窗簾提供網(wǎng)站建設(shè)服務(wù),有成熟的網(wǎng)站定制合作流程,提供網(wǎng)站定制設(shè)計(jì)服務(wù):原型圖制作、網(wǎng)站創(chuàng)意設(shè)計(jì)、前端HTML5制作、后臺(tái)程序開發(fā)等。成都網(wǎng)站改版熱線:028-86922220
2.也可以采用數(shù)據(jù)庫(kù)中設(shè)置 臨時(shí)表 來(lái)處理
一個(gè)用戶登陸時(shí)向表中插進(jìn)一條記錄,用戶離開時(shí)候刪除該記錄
如想統(tǒng)計(jì)在線人數(shù),簡(jiǎn)單地執(zhí)行
select count(*) from table... 即可
3.application對(duì)象中可以記住現(xiàn)在的人數(shù),application的生命周期和服務(wù)器的生命周期一樣長(zhǎng)。
4.還有一種方法要用到一個(gè)文件global.jsa ,方法是(在JSP中)是sessionDestroy(),其中它是以session對(duì)象為參數(shù)的。還有要把global.jsa文件必須房子和JSP程序相同的文件目錄內(nèi)才行。
5.網(wǎng)頁(yè)自動(dòng)刷新的代碼是:
在文件頭部加上
meta http-equiv="refresh" content="15"
刷新間隔時(shí)間是15秒
6.在session中加入監(jiān)聽類,類的示例代碼如下:
onLineUser.java
import javax.servlet.http.*;
import javax.servlet.*;
import java.util.*;
public class onLineUser implements HttpSessionBindingListener {
public onLineUser(){
}
private Vector users=new Vector();
public int getCount(){
users.trimToSize();
return users.capacity();
}
public boolean existUser(String userName){
users.trimToSize();
boolean existUser=false;
for (int i=0;iusers.capacity();i++ )
{
if (userName.equals((String)users.get(i)))
{
existUser=true;
break;
}
}
return existUser;
}
public boolean deleteUser(String userName) {
users.trimToSize();
if(existUser(userName)){
int currUserIndex=-1;
for(int i=0;iusers.capacity();i++){
if(userName.equals((String)users.get(i))){
currUserIndex=i;
break;
}
}
if (currUserIndex!=-1){
users.remove(currUserIndex);
users.trimToSize();
return true;
}
}
return false;
}
public Vector getOnLineUser()
{
return users;
}
public void valueBound(HttpSessionBindingEvent e) {
users.trimToSize();
if(!existUser(e.getName())){
users.add(e.getName());
System.out.print(e.getName()+"\t 登入到系統(tǒng)\t"+(new Date()));
System.out.println(" 在線用戶數(shù)為:"+getCount());
}else
System.out.println(e.getName()+"已經(jīng)存在");
}
public void valueUnbound(HttpSessionBindingEvent e) {
users.trimToSize();
String userName=e.getName();
deleteUser(userName);
System.out.print(userName+"\t 退出系統(tǒng)\t"+(new Date()));
System.out.println(" 在線用戶數(shù)為:"+getCount());
}
}
jsp:
%@ page contentType="text/html;charset=gb2312" %
%@ page import="java.util.*" %
jsp:useBean id="onlineuser" class="temp.jb.onLineUser" scope="application"/
html
head
/head
body onUnload="postMessage()"
center
ph1登陸成功,歡迎訪問/h1/p
/center
% session = request.getSession(false); %
%
String username=request.getParameter("username");
if (onlineuser.existUser(username)){
out.println("用戶font color=red"+username+"/font已經(jīng)登陸!");
}else{
session.setMaxInactiveInterval(50); //Sesion有效時(shí)長(zhǎng),以秒為單位
session.setAttribute(username,onlineuser);
out.println("歡迎新用戶:font color=red"+username+"/font登陸到系統(tǒng)!");
}
out.println("br當(dāng)前在線用戶人數(shù):font color=red"+onlineuser.getCount()+"/fontbr");
String ip = request.getRemoteAddr();
out.println("brIP:font color=red"+ip+"/fontbr");
Vector vt=onlineuser.getOnLineUser();
Enumeration e = vt.elements();
out.println("在線用戶列表");
out.println("table border=1");
out.println("trtd用戶名/td/tr");
while(e.hasMoreElements()){
out.println("trtd");
out.println((String)e.nextElement()+"br");
out.println("/td/tr");
}
out.println("/table");
%
center
p /p
[a href="javascript:window.close()"關(guān)閉窗口/a]
%
out.println("pa href='logout.jsp?username="+username+"'退出系統(tǒng)/a/p");
%
/center
Script
function postMessage(){
%onlineuser.deleteUser(request.getParameter("username"));%
}
/Script
/body
/html
用戶表里面加一個(gè)字段status
當(dāng)用戶上線以后,就把status設(shè)置為1
統(tǒng)計(jì)在線人數(shù)就是一條sql語(yǔ)句:
select?count(*)?from?用戶表?where?status?=?1
您好,這樣:
通過SessionListenr可以監(jiān)聽session的創(chuàng)建和銷毀,所以首先要寫一個(gè)類MySessionListener,實(shí)現(xiàn)javax.servlet.http.HttpSessionListener接口及其sessionCreated()、sessionDestroyed()方法:
import java.util.HashSet;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;
public class MySessionListener implements HttpSessionListener {
public void sessionCreated(HttpSessionEvent event) {
HttpSession session = event.getSession();
ServletContext application = session.getServletContext();
// 在application范圍由一個(gè)HashSet集保存所有的session
HashSet sessions = (HashSet) application.getAttribute("sessions");
if (sessions == null) {
sessions = new HashSet();
application.setAttribute("sessions", sessions);
}
// 新創(chuàng)建的session均添加到HashSet集中
sessions.add(session);
// 可以在別處從application范圍中取出sessions集合
// 然后使用sessions.size()獲取當(dāng)前活動(dòng)的session數(shù),即為“在線人數(shù)”
}
public void sessionDestroyed(HttpSessionEvent event) {
HttpSession session = event.getSession();
ServletContext application = session.getServletContext();
HashSet sessions = (HashSet) application.getAttribute("sessions");
// 銷毀的session均從HashSet集中移除
sessions.remove(session);
}
}
然后再在web.xml中分別配置SessionListener和session超時(shí)時(shí)間(10分鐘):
listener
listener-class全路徑MySessionListener/listener-class
/listener
session-config
session-timeout10/session-timeout
/session-config
最后在Jsp頁(yè)面代碼使用以下代碼就可以實(shí)現(xiàn)當(dāng)前在線人數(shù)統(tǒng)計(jì)輸出:
本文題目:java當(dāng)前在線人數(shù)代碼 java當(dāng)前在線人數(shù)代碼是多少
當(dāng)前網(wǎng)址:http://www.rwnh.cn/article20/hhspjo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、網(wǎng)站策劃、虛擬主機(jī)、移動(dòng)網(wǎng)站建設(shè)、商城網(wǎng)站、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)