2.也可以采用数据库中设置 临时表 来处理
一个用户登陆时向表中插进一条记录,用户离开时候删除该记录
如想统计在线人数,简单地执行
select count(*) from table... 即可
3.application对象中可以记住现在的人数,application的生命周期和服务器的生命周期一样长。
4.还有一种方法要用到一个文件global.jsa ,方法是(在JSP中)是sessionDestroy(),其中它是以session对象为参数的。还有要把global.jsa文件必须房子和JSP程序相同的文件目录内才行。
5.网页自动刷新的代码是:
在文件头部加上
<meta http-equiv="refresh" content="15">
刷新间隔时间是15秒
6.在session中加入监听类,类的示例代码如下:
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=0i<users.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=0i<users.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"+(new Date()))
System.out.println("在线用户数为:"+getCount())
}else
System.out.println(e.getName()+"已经存在")
}
public void valueUnbound(HttpSessionBindingEvent e) {
users.trimToSize()
String userName=e.getName()
deleteUser(userName)
System.out.print(userName+"\t 退出系统\t"+(new Date()))
System.out.println("在线用户数为:"+getCount())
}
}
jsp:
<%@ page contentType="text/htmlcharset=gb2312" %>
<%@ page import="java.util.*" %>
<jsp:useBean id="onlineuser" class="temp.jb.onLineUser" scope="application"/>
<html>
<head>
</head>
<body onUnload="postMessage()">
<center>
<p><h1>登陆成功,欢迎访问</h1></p>
</center>
<% session = request.getSession(false) %>
<%
String username=request.getParameter("username")
if (onlineuser.existUser(username)){
out.println("用户<font color=red>"+username+"</font>已经登陆!")
}else{
session.setMaxInactiveInterval(50) //Sesion有效时长,以秒为单位
session.setAttribute(username,onlineuser)
out.println("欢迎新用户:<font color=red>"+username+"</font>登陆到系统!")
}
out.println("<br>当前在线用户人数:<font color=red>"+onlineuser.getCount()+"</font><br>")
String ip = request.getRemoteAddr()
out.println("<br>IP:<font color=red>"+ip+"</font><br>")
Vector vt=onlineuser.getOnLineUser()
Enumeration e = vt.elements()
out.println("在线用户列表")
out.println("<table border=1>")
out.println("<tr><td>用户名</td></tr>")
while(e.hasMoreElements()){
out.println("<tr><td>")
out.println((String)e.nextElement()+"<br>")
out.println("</td></tr>")
}
out.println("</table>")
%>
<center>
<p> </p>
[<a href="javascript:window.close()">关闭窗口</a>]
<%
out.println("<p><a href='logout.jsp?username="+username+"'>退出系统</a></p>")
%>
</center>
<Script>
function postMessage(){
<%onlineuser.deleteUser(request.getParameter("username"))%>
}
</Script>
</body>
</html>
根据会话数来统计在线人数.一般是这样的,在数据库中记录每个用户的会员数据,并且用户的每一次动作都update他的最后动作时间.那么统计在线人数就是统计某段时间内有动作的用户即可.一般5分钟或者10分钟.
上面是靠用户自己的 *** 作来更新在线时间的.你也可以在用户停留的页面弄个JS,隔个2分钟就做个ajax请求,自动更新用户的最后的在线时间,
ps 如果你不想修改session存到mysql,memcached等里面,则可以根据session_id()来获取PHPSESSID来作为身份标识,
然后要在程序中写上随机删除过期很久了的会话.
至于聊天记录.你肯定是要保存在服务器端的,至于读取.可以通过AJAX几秒来获取一次数据库里面的内容,当然,在获取记录的时候,你需要记录你获取的时间,然后下次获取的时候只呀这个时间后的,如果有数据,则追加到当前聊天记录后面,否则保持不变.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)