溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在java中使用WebSocket實現(xiàn)一個聊天消息推送功能

發(fā)布時間:2021-05-14 17:41:28 來源:億速云 閱讀:180 作者:Leah 欄目:編程語言

怎么在java中使用WebSocket實現(xiàn)一個聊天消息推送功能?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

環(huán)境:

JDK.1.7.0_51

apache-tomcat-7.0.53

java jar包:tomcat-coyote.jar、tomcat-juli.jar、websocket-api.jar

ChatAnnotation消息發(fā)送類:

import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
 
import javax.websocket.OnClose;
import javax.websocket.OnError;
import javax.websocket.OnMessage;
import javax.websocket.OnOpen;
import javax.websocket.Session;
import javax.websocket.server.ServerEndpoint;
 
import org.apache.juli.logging.Log;
import org.apache.juli.logging.LogFactory;
 
import com.util.HTMLFilter; 
 
/**
 * WebSocket 消息推送服務(wù)類
 * @author 胡漢三
 *
 * 2014-11-18 下午7:53:13
 */
@ServerEndpoint(value = "/websocket/chat")
public class ChatAnnotation {
 
  private static final Log log = LogFactory.getLog(ChatAnnotation.class);
 
  private static final String GUEST_PREFIX = "Guest";
  private static final AtomicInteger connectionIds = new AtomicInteger(0);
  private static final Map<String,Object> connections = new HashMap<String,Object>();
 
  private final String nickname;
  private Session session;
 
  public ChatAnnotation() {
    nickname = GUEST_PREFIX + connectionIds.getAndIncrement();
  }
 
 
  @OnOpen
  public void start(Session session) {
    this.session = session;
    connections.put(nickname, this); 
    String message = String.format("* %s %s", nickname, "has joined.");
    broadcast(message);
  }
 
 
  @OnClose
  public void end() {
    connections.remove(this);
    String message = String.format("* %s %s",
        nickname, "has disconnected.");
    broadcast(message);
  }
 
 
  /**
   * 消息發(fā)送觸發(fā)方法
   * @param message
   */
  @OnMessage
  public void incoming(String message) {
    // Never trust the client
    String filteredMessage = String.format("%s: %s",
        nickname, HTMLFilter.filter(message.toString()));
    broadcast(filteredMessage);
  }
 
  @OnError
  public void onError(Throwable t) throws Throwable {
    log.error("Chat Error: " + t.toString(), t);
  }
 
  /**
   * 消息發(fā)送方法
   * @param msg
   */
  private static void broadcast(String msg) {
   if(msg.indexOf("Guest0")!=-1){
   sendUser(msg);
   } else{
   sendAll(msg);
   }
  } 
  
  /**
   * 向所有用戶發(fā)送
   * @param msg
   */
  public static void sendAll(String msg){
   for (String key : connections.keySet()) {
     ChatAnnotation client = null ;
      try {
       client = (ChatAnnotation) connections.get(key);
        synchronized (client) {
          client.session.getBasicRemote().sendText(msg);
        }
      } catch (IOException e) { 
        log.debug("Chat Error: Failed to send message to client", e);
        connections.remove(client);
        try {
          client.session.close();
        } catch (IOException e1) {
          // Ignore
        }
        String message = String.format("* %s %s",
            client.nickname, "has been disconnected.");
        broadcast(message);
      }
    }
  }
  
  /**
   * 向指定用戶發(fā)送消息 
   * @param msg
   */
  public static void sendUser(String msg){
   ChatAnnotation c = (ChatAnnotation)connections.get("Guest0");
 try {
  c.session.getBasicRemote().sendText(msg);
 } catch (IOException e) {
  log.debug("Chat Error: Failed to send message to client", e);
      connections.remove(c);
      try {
        c.session.close();
      } catch (IOException e1) {
        // Ignore
      }
      String message = String.format("* %s %s",
          c.nickname, "has been disconnected.");
      broadcast(message); 
 } 
  }
}

HTMLFilter工具類:

/**
 * HTML 工具類 
 *
 * @author 胡漢三
 */
public final class HTMLFilter {
  public static String filter(String message) {
    if (message == null)
      return (null);
    char content[] = new char[message.length()];
    message.getChars(0, message.length(), content, 0);
    StringBuilder result = new StringBuilder(content.length + 50);
    for (int i = 0; i < content.length; i++) {
      switch (content[i]) {
      case '<':
        result.append("<");
        break;
      case '>':
        result.append(">");
        break;
      case '&':
        result.append("&");
        break;
      case '"':
        result.append(""");
        break;
      default:
        result.append(content[i]);
      }
    }
    return (result.toString());
  }
}

頁面:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
 
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
  <title>測試</title>
  <style type="text/css">
    input#chat {
      width: 410px
    }
 
    #console-container {
      width: 400px;
    }
 
    #console {
      border: 1px solid #CCCCCC;
      border-right-color: #999999;
      border-bottom-color: #999999;
      height: 170px;
      overflow-y: scroll;
      padding: 5px;
      width: 100%;
    }
 
    #console p {
      padding: 0;
      margin: 0;
    }
 </style>
  <script type="text/javascript">
 
    var Chat = {};
 
    Chat.socket = null;
 
    Chat.connect = (function(host) {
      if ('WebSocket' in window) {
        Chat.socket = new WebSocket(host);
      } else if ('MozWebSocket' in window) {
        Chat.socket = new MozWebSocket(host);
      } else {
        Console.log('Error: WebSocket is not supported by this browser.');
        return;
      }
 
      Chat.socket.onopen = function () {
        Console.log('Info: WebSocket connection opened.');
        document.getElementById('chat').onkeydown = function(event) {
          if (event.keyCode == 13) {
            Chat.sendMessage();
          }
        };
      };
 
      Chat.socket.onclose = function () {
        document.getElementById('chat').onkeydown = null;
        Console.log('Info: WebSocket closed.');
      };
 
      Chat.socket.onmessage = function (message) {
        Console.log(message.data);
      };
    });
 
    Chat.initialize = function() {
      if (window.location.protocol == 'http:') {
        Chat.connect('ws://' + window.location.host + '/socket2/websocket/chat');
      } else {
        Chat.connect('wss://' + window.location.host + '/socket2/websocket/chat');
      }
    };
 
    Chat.sendMessage = (function() {
      var message = document.getElementById('chat').value;
      if (message != '') {
        Chat.socket.send(message);
        document.getElementById('chat').value = '';
      }
    });
 
    var Console = {};
 
    Console.log = (function(message) {
      var console = document.getElementById('console');
      var p = document.createElement('p');
      p.style.wordWrap = 'break-word';
      p.innerHTML = message;
      console.appendChild(p);
      while (console.childNodes.length > 25) { 
        console.removeChild(console.firstChild);
      }
      console.scrollTop = console.scrollHeight;
    });
 
    Chat.initialize();
 
 
    document.addEventListener("DOMContentLoaded", function() {
      // Remove elements with "noscript" class - <noscript> is not allowed in XHTML
      var noscripts = document.getElementsByClassName("noscript");
      for (var i = 0; i < noscripts.length; i++) {
        noscripts[i].parentNode.removeChild(noscripts[i]);
      }
    }, false);
 
  </script>
</head>
<body>
<div class="noscript"><h3 >Seems your browser doesn't support Javascript! Websockets rely on Javascript being enabled. Please enable
  Javascript and reload this page!</h3></div>
<div>
  <p>
    <input type="text" placeholder="請輸入內(nèi)容" id="chat" />
  </p>
  <div id="console-container">
    <div id="console"/>
  </div>
</div>
</body>
</html>

可指定發(fā)送給某個用戶,也可全部發(fā)送,詳情見ChatAnnotation類的broadcast方法。
程序發(fā)布時記得刪除tomcat-coyote.jar、tomcat-juli.jar、websocket-api.jar這三個jar包在啟動Tomcat。

程序截圖,Guest0用戶發(fā)送信息的信息,在后臺進(jìn)行了判斷只發(fā)送給自己:

怎么在java中使用WebSocket實現(xiàn)一個聊天消息推送功能

Guest1:

怎么在java中使用WebSocket實現(xiàn)一個聊天消息推送功能

Guest2:

怎么在java中使用WebSocket實現(xiàn)一個聊天消息推送功能

Java可以用來干什么

Java主要應(yīng)用于:1. web開發(fā);2. Android開發(fā);3. 客戶端開發(fā);4. 網(wǎng)頁開發(fā);5. 企業(yè)級應(yīng)用開發(fā);6. Java大數(shù)據(jù)開發(fā);7.游戲開發(fā)等。

看完上述內(nèi)容,你們掌握怎么在java中使用WebSocket實現(xiàn)一個聊天消息推送功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI