我的日常

登录/注册
您现在的位置:论坛 盖世程序员(我猜到了开头 却没有猜到结局) 项目源码 > javaWeb聊天室简单例子(可私聊)
总共48087条微博

动态微博

查看: 4152|回复: 3

javaWeb聊天室简单例子(可私聊)

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

    2021-2-2 11:21
  • 签到天数: 36 天

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2014-10-18 20:10:37 |只看该作者 |倒序浏览
    在下根据网上的相关资料,摸索着写了一个DWR框架推模式的小聊天室,可实现私聊功能。 ( T$ c5 p& `! @9 x2 Y! T- G
    功能基本正常,但是偶尔会出现信息显示不同步的问题,现将源码奉上,希望各位高手能指点一二。ChatManager.java* d' @1 @4 x, I

    9 g! p# X, x8 V6 _, A- D: ~
    1. package services;" n5 f# R% m) B/ F
    2. 8 `3 F: N" _/ `1 u3 V
    3. import java.util.ArrayList;
      # ]+ e. h1 f! e% j
    4. import java.util.Collection;1 M) f, G7 \0 K/ A) ^
    5. import java.util.List;4 O6 Z. `4 T  ~8 C! e& M
    6. 8 b% d3 Y" x( I  B
    7. import javax.servlet.http.HttpServletRequest;
      " }9 `" V1 s' L; e6 Z
    8. import javax.servlet.http.HttpSession;2 k, R5 N6 L! B

    9. ( @+ D: h+ _" T
    10. import org.directwebremoting.ScriptSession;
      . [% H' q) [! ]' v
    11. import org.directwebremoting.WebContext;- J- D5 a8 f1 s% K& V( @
    12. import org.directwebremoting.WebContextFactory;, N$ ^( |& H: ~( _* J- Y7 U
    13. import org.directwebremoting.proxy.dwr.Util;/ d. \: F7 E$ a  z0 z- p
    14. # k: X# q. W$ X1 A9 u- t# I
    15. import pojo.MessageInfo;$ m+ D) m. q+ I6 A& C2 ~, W9 R
    16. import pojo.UserInfo;% v, }0 d& i  i' H

    17. + @1 x% E/ {' a; ^: J) F
    18. public class ChatManager {& M; M# q' F8 @1 o% w+ T
    19.         public static List<UserInfo> onlineUsersList=new ArrayList<UserInfo>();
      1 @! G$ }) K. M2 n7 P# Q
    20.         public static List<UserInfo> sendUserList=new ArrayList<UserInfo>();
      4 G( Z. ]- S# b& ]" R
    21.         public static List<MessageInfo> messageList=new ArrayList<MessageInfo>();0 e1 O/ `2 G+ ?) o% `. u
    22.         public ChatManager(){3 J* [$ i5 a; d) w  x* e# k
    23.                 UserInfo userInfo = new UserInfo("0","所有人");
      . P/ I& L- k% `0 U  ^0 g' f
    24.                 sendUserList.add(userInfo);7 _% H9 M4 |$ _3 _5 i; r# L6 x7 D0 J0 L
    25.         }
      : m8 `- q, a0 q8 s; i, I- I
    26.        
      ! G& k4 C% M, K# T
    27.         public String updateOnlineUsers(String userName,boolean flag) {
        ~3 Q0 E# G& w9 n$ Z
    28.                 UserInfo userInfo=null;1 y" |& J7 U* O9 z
    29.                 WebContext context=WebContextFactory.get();
      . y1 k$ O% ^: ^9 v- E
    30.                 HttpSession session = context.getSession();. s+ ^+ [/ g' s* w8 |/ h  `
    31.                 if (flag) {
      ; P7 P0 z% v" d+ l
    32.                         userInfo = new UserInfo(session.getId(),userName);- ^: m% K4 |* i) T( d: p. V7 @! A
    33.                         onlineUsersList.add(userInfo);) L* U) P7 a  C; E
    34.                         sendUserList.add(userInfo);
      3 r8 |+ J% N" X' n, Q, ~/ K) @
    35.                         this.setScriptSessionFlag(userInfo);
      . t/ i+ v6 m3 b7 g6 T3 q  C
    36.                 }
      3 e6 H8 y6 z" A; j) C$ j
    37.                 String currentPage = "/chat/index.jsp";/ P5 ~- M  j# O+ p, b
    38.                 Collection sessionsByPage = context.getScriptSessionsByPage(currentPage);" y' h3 t5 p7 c* Z# ~' D( B1 P
    39.                 Util allPageUtil = new Util(sessionsByPage);% C/ k1 I+ f! a9 H8 Q: {0 Z+ ]
    40.                 allPageUtil.removeAllOptions("onlineList");
      " r- }; m2 S9 Z0 @( E6 P9 i! c& |
    41.                 allPageUtil.addOptions("onlineList", onlineUsersList, "userName");+ E7 |  Z' N8 J9 M4 C
    42.                 allPageUtil.removeAllOptions("userList");* I4 t) e# |' M( T/ ]  K, L
    43.                 allPageUtil.addOptions("userList", sendUserList, "userId", "userName");
      ; i* H6 P  q* s5 Z5 A/ `2 ^
    44.                 if (!flag) {" \3 X0 w7 A8 e5 t8 H1 G
    45.                         return null;1 W2 M) y# c, `% e! i- A: z; E+ s
    46.                 }- V6 p7 V* S% W2 N" b
    47.                 return userInfo.getUserId();* p" E9 p& U# k2 y/ b  _
    48.         }" d" |. Y6 a. v5 p' |
    49.        
      3 f* G% ^& [7 z$ _
    50.         public void setScriptSessionFlag(UserInfo userInfo) {6 Z8 x5 G: H2 N- V. @
    51.                 WebContextFactory.get().getScriptSession().setAttribute("userInfo", userInfo);' w8 X( ]- E2 g5 ], q$ D
    52.         }3 B9 y  z/ [" `8 S  Y: \. F* S- v
    53.         * X" m6 l: r/ C8 j, w3 g
    54.         public Collection<ScriptSession> getScriptSessionFlag(String userId) {* j9 |1 h4 p# s( _) s2 n6 n
    55.                 Collection<ScriptSession> list=new ArrayList<ScriptSession>();0 ^; e2 p  D8 h- g
    56.                 Collection<ScriptSession> sessions=new ArrayList<ScriptSession>();
      5 C) U7 w, q- b/ s1 K1 \0 V  R  R
    57.                 WebContext context = WebContextFactory.get();
      2 l, w, l( Q$ ~9 Z0 S9 \- W" I/ b' M
    58.                 String currentPage = "/chat/index.jsp";1 R) R- p0 Y2 q
    59.                 Collection sessionsByPage = context.getScriptSessionsByPage(currentPage);3 M& B: C( W( ]! G2 y- y
    60.                 sessions.addAll(sessionsByPage);$ N1 q. j! I5 N3 u4 F% C5 ?7 h7 ~( I
    61.                 if ("0".equals(userId)) {
      1 V+ c; g! z" l& v
    62.                         list=sessions;
      $ E5 n; I$ f; @* e$ g/ _# K: d
    63.                 }else{( }$ w- T0 b) r0 ~
    64.                         for (ScriptSession session : sessions) {9 B( F& J- y9 m9 I6 B' k6 u
    65.                                 UserInfo userInfo=(UserInfo) session.getAttribute("userInfo");
      . i; j4 b, t3 G6 y/ M
    66.                                 if (userId.equals(userInfo.getUserId())) {; {8 H' @( ]% ]2 U$ g
    67.                                         list.add(session);
      ; o& m0 K. [7 a, A& v
    68.                                         break;2 `$ p9 i; f* g
    69.                                 }
      4 b+ z! V% v1 @- O( p1 l
    70.                         }7 _9 v' Q0 W  D; r0 X. _
    71.                 }
      $ X. r9 M% {" P
    72.                 return list;; X6 y2 b; j9 [* u; Z: x/ U/ G8 m
    73.         }3 i* N( u; A" [- u
    74.         6 f# Q# M- F0 v9 d4 ~
    75.         public void sendMessage(String sender,String receiverId,String msg) {
      6 s* B- y4 _; F
    76.                 Collection<ScriptSession> scriptSessionFlag = this.getScriptSessionFlag(receiverId);& P$ Q$ Y9 _8 ]! U/ x
    77.                 MessageInfo messageInfo = new MessageInfo(sender,receiverId,msg);. {: ^: l; ]) |  y3 P
    78.                 messageList.add(messageInfo);
      ( R- X' L# Q& O6 Q2 |& \5 q* W
    79.                 Util receiverUtil = new Util(scriptSessionFlag);$ j/ J2 G4 p$ Y9 Q
    80.                 receiverUtil.removeAllOptions("messageList");$ {8 \7 `# B3 \8 s  E/ d2 @4 i5 r
    81.                 receiverUtil.addOptions("messageList", messageList, "msg");
      % {- v% n# j0 H0 r
    82.         }
      ( ~* W6 o* O0 X  \# D6 d5 P. V
    83. }1 K9 y% _# y# o) X/ H0 L% X. t9 O
    复制代码
    & A. z: j$ o: c: g# i
    项目源码下载地址:点击下载
    & G# }; F; l; L- G+ G
    + s2 |7 t$ E, ]! i

    科帮网 1、本主题所有言论和图片纯属会员个人意见,与本社区立场无关
    2、本站所有主题由该帖子作者发表,该帖子作者与科帮网享有帖子相关版权
    3、其他单位或个人使用、转载或引用本文时必须同时征得该帖子作者和科帮网的同意
    4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任
    5、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
    6、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
    7、科帮网管理员和版主有权不事先通知发贴者而删除本文


    JAVA爱好者①群:JAVA爱好者① JAVA爱好者②群:JAVA爱好者② JAVA爱好者③ : JAVA爱好者③

    1

    主题

    0

    听众

    93

    金钱

    三袋弟子

    该用户从未签到

    沙发
    发表于 2015-06-19 10:53:35 |只看该作者
    谢谢楼主分享
    回复

    使用道具 举报

    1

    主题

    0

    听众

    93

    金钱

    三袋弟子

    该用户从未签到

    板凳
    发表于 2015-06-19 10:54:20 |只看该作者
    呃,楼主分享链接失效了
    2 f  ^2 }2 b' ?
    回复

    使用道具 举报

    woniu 实名认证   

    2

    主题

    0

    听众

    330

    金钱

    四袋长老

    该用户从未签到

    地板
    发表于 2016-04-12 12:05:28 |只看该作者
    这个项目太棒勒!下下来学习下!
    回复

    使用道具 举报

    快速回复
    您需要登录后才可以回帖 登录 | 立即注册

       

    关闭

    站长推荐上一条 /1 下一条

    发布主题 快速回复 返回列表 联系我们 官方QQ群 科帮网手机客户端
    快速回复 返回顶部 返回列表