我的日常

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

动态微博

查看: 4112|回复: 3

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

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

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

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    #
    发表于 2014-10-18 20:10:37 |只看该作者 |正序浏览
    在下根据网上的相关资料,摸索着写了一个DWR框架推模式的小聊天室,可实现私聊功能。 - y7 u/ W" i6 h, w3 V* L: Q' O
    功能基本正常,但是偶尔会出现信息显示不同步的问题,现将源码奉上,希望各位高手能指点一二。ChatManager.java
    % E5 a! g# s4 v3 {
    8 o8 O  p: ]0 N2 V5 S( _
    1. package services;
      % ]6 b! c1 o* U! v4 h! s! A) E6 u

    2. , G# `$ U7 R6 \& q4 b* U: w8 k
    3. import java.util.ArrayList;
      & U' x6 F$ g* o+ @: _7 h6 D+ ]
    4. import java.util.Collection;" b- Z4 h4 G0 h2 [
    5. import java.util.List;
      6 M$ V! w1 w$ @* L
    6.   L! y' W# W8 J: O" e  o
    7. import javax.servlet.http.HttpServletRequest;
      ; A0 T1 |$ q5 N$ E- U
    8. import javax.servlet.http.HttpSession;4 h6 Y) n/ j; j- u5 S9 D1 `! y

    9. * {: I5 Y4 s! y  p
    10. import org.directwebremoting.ScriptSession;0 B: _" L& \- Y0 N% w
    11. import org.directwebremoting.WebContext;$ w- a* S  l' }( t- C1 M
    12. import org.directwebremoting.WebContextFactory;. `8 `9 ?4 v; Z) E& u! C4 |
    13. import org.directwebremoting.proxy.dwr.Util;
      ( Z1 F0 q: A7 V- @& @% H

    14. - Y0 L0 F$ d5 b
    15. import pojo.MessageInfo;
      . i- e2 H% ?8 x2 J# m2 A
    16. import pojo.UserInfo;* H. R/ o. d4 c% r7 C& W

    17. , w- l% j) w0 L7 l0 P% ?. Q
    18. public class ChatManager {8 _5 C- J! m  ~7 `9 d% @' p* J
    19.         public static List<UserInfo> onlineUsersList=new ArrayList<UserInfo>();' D4 m8 |: Q3 U
    20.         public static List<UserInfo> sendUserList=new ArrayList<UserInfo>();
      4 I2 C- F+ A6 |$ f; A& X
    21.         public static List<MessageInfo> messageList=new ArrayList<MessageInfo>();
      % S# C, Y2 i5 ], \/ n
    22.         public ChatManager(){
      % v& v& b9 v9 l
    23.                 UserInfo userInfo = new UserInfo("0","所有人");
      $ w2 o8 B$ u% P6 \! ]8 u
    24.                 sendUserList.add(userInfo);
      2 }2 Z) S4 u. s9 ~1 }; p
    25.         }
      & d, m8 V7 [% {1 i0 a$ I* q
    26.         / _" ?6 O% b; g0 b
    27.         public String updateOnlineUsers(String userName,boolean flag) {
      5 B% D7 k$ A6 }$ s9 F  h* |" C
    28.                 UserInfo userInfo=null;- n# r( `7 X, C* x; ^) ?( z0 J& S
    29.                 WebContext context=WebContextFactory.get();+ x: {% c" h6 Z2 |# y, I) l
    30.                 HttpSession session = context.getSession();# G, g" a: w5 T# [* c& r
    31.                 if (flag) {2 y! I$ e: O/ {% x- A9 M5 p# E
    32.                         userInfo = new UserInfo(session.getId(),userName);* G$ `- v" f& B" l* I& z6 y) Y
    33.                         onlineUsersList.add(userInfo);
      + b) G6 ?: E2 {* f. l
    34.                         sendUserList.add(userInfo);
      4 d/ F9 J  X: G( h
    35.                         this.setScriptSessionFlag(userInfo);
      $ }5 Y9 S5 I8 Q8 q! G  l& k+ y
    36.                 }
      # F6 M6 k' ^. u% a, ?6 S7 I$ r
    37.                 String currentPage = "/chat/index.jsp";1 z" w  Y  X$ H9 p, n9 O. r5 c
    38.                 Collection sessionsByPage = context.getScriptSessionsByPage(currentPage);% N" a1 N5 b. n, X( y0 i' A- m) p* z
    39.                 Util allPageUtil = new Util(sessionsByPage);
        x; i  y2 f5 k& M
    40.                 allPageUtil.removeAllOptions("onlineList");0 j( M0 y/ o6 L  Q) t6 h
    41.                 allPageUtil.addOptions("onlineList", onlineUsersList, "userName");
      0 n3 E" |2 r8 u. b* t) C% V
    42.                 allPageUtil.removeAllOptions("userList");, [$ l3 g9 X6 e$ J
    43.                 allPageUtil.addOptions("userList", sendUserList, "userId", "userName");5 W2 o7 {  Y# H9 `
    44.                 if (!flag) {( Z9 E) a" y$ E  b" ], @
    45.                         return null;( i- \. @  }# o3 ~
    46.                 }
      ! L! {9 O; i" ^9 m1 c5 [# S7 _
    47.                 return userInfo.getUserId();0 ^( A  \8 y9 p) K% a3 A5 w' C
    48.         }' I  M. k. ~8 d' f4 `: [; p1 ?
    49.        
      + G' r( Y7 [  ?; x, y6 D2 e  B: w
    50.         public void setScriptSessionFlag(UserInfo userInfo) {
      ! ^$ r- ~( u8 X7 ~0 ?( m2 |( m
    51.                 WebContextFactory.get().getScriptSession().setAttribute("userInfo", userInfo);
      , P8 H) [, r7 E
    52.         }
      : Y) T. Z/ ?/ b: l$ |  X( Q
    53.        
      4 X! e1 D: v4 N5 G
    54.         public Collection<ScriptSession> getScriptSessionFlag(String userId) {
      . l$ z! T! j# W+ v( ^) w
    55.                 Collection<ScriptSession> list=new ArrayList<ScriptSession>();- F+ k- Y! |. U3 D# Z
    56.                 Collection<ScriptSession> sessions=new ArrayList<ScriptSession>();" C' y) l  f" Z- L. X6 f3 Z
    57.                 WebContext context = WebContextFactory.get();
      6 U9 d# t7 `/ n+ v, f9 w
    58.                 String currentPage = "/chat/index.jsp";
      % y+ b& m* T2 q! D4 X4 c
    59.                 Collection sessionsByPage = context.getScriptSessionsByPage(currentPage);* u3 \( \& s5 B) C7 a6 d
    60.                 sessions.addAll(sessionsByPage);
      2 k, R. @, G. Q3 r
    61.                 if ("0".equals(userId)) {, Y! \' d/ K+ S: Y
    62.                         list=sessions;+ j, r3 U2 p/ W- b( ~
    63.                 }else{/ g( a4 M: p) n6 p$ b& ]
    64.                         for (ScriptSession session : sessions) {
      6 U# `: r/ o/ h# z5 Y* r* A
    65.                                 UserInfo userInfo=(UserInfo) session.getAttribute("userInfo");
      2 z5 M+ T4 j2 H+ `
    66.                                 if (userId.equals(userInfo.getUserId())) {# J6 z7 y/ J) G! `& o: m
    67.                                         list.add(session);1 |0 ?) Z$ G% R; I. z. U
    68.                                         break;
      ! i4 l) }9 Y- G0 E" s
    69.                                 }
      5 P: v; `' D2 z! M' r9 D/ R7 a
    70.                         }( e3 F0 q3 W: L9 A
    71.                 }
      $ r! B3 i8 H! n/ Z1 A# ]3 T
    72.                 return list;
      , h) [5 y$ ?9 A# @0 V) F
    73.         }
      / A# b6 w3 Y( U* c4 e5 j; i% F. l
    74.        
      3 ^4 i4 A( z5 t0 n3 ?$ }! Z3 T' T
    75.         public void sendMessage(String sender,String receiverId,String msg) {
      8 ?  Q* w. u: Z3 G; }7 O
    76.                 Collection<ScriptSession> scriptSessionFlag = this.getScriptSessionFlag(receiverId);4 p; H4 W9 m. {6 c0 D! z0 H; M0 c6 G
    77.                 MessageInfo messageInfo = new MessageInfo(sender,receiverId,msg);/ ^! Y( R7 {0 q7 v/ p$ g1 d, ~
    78.                 messageList.add(messageInfo);/ [1 W8 Y/ V: G6 Q& s
    79.                 Util receiverUtil = new Util(scriptSessionFlag);
      5 P. ]) ^- I+ ~
    80.                 receiverUtil.removeAllOptions("messageList");
      * G& e& O' K4 y8 m7 A5 h
    81.                 receiverUtil.addOptions("messageList", messageList, "msg");
      4 Y* Q; d( I$ B% P2 \
    82.         }
      3 T9 k" u6 h! Q0 p# [5 v: ~& Z3 P
    83. }- f2 C* f0 z7 {+ K) j2 a9 g
    复制代码

    / }, j  {+ `  @( e6 `% e项目源码下载地址:点击下载

    8 I7 E+ }3 R( _* `
    0 `1 L: X1 l- B- F

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


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

    woniu 实名认证   

    2

    主题

    0

    听众

    330

    金钱

    四袋长老

    该用户从未签到

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

    使用道具 举报

    1

    主题

    0

    听众

    93

    金钱

    三袋弟子

    该用户从未签到

    沙发
    发表于 2015-06-19 10:54:20 |只看该作者
    呃,楼主分享链接失效了# w0 H' z& X6 M! p
    回复

    使用道具 举报

    1

    主题

    0

    听众

    93

    金钱

    三袋弟子

    该用户从未签到

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

    使用道具 举报

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

       

    关闭

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

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