• 大小: 11KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: Java
  • 标签: java  websocket  服务端  

资源简介

java websocket 服务端 客户端源码。实现转发功能。接收南向接口调用,并转发南向消息到北向接口,返回北向返回的消息给南向。

资源截图

代码片段和文件信息

package server;

import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.ByteBuffer;
import java.nio.channels.NotYetConnectedException;

import org.java_websocket.WebSocket.READYSTATE;
import org.java_websocket.client.WebSocketClient;
import org.java_websocket.drafts.Draft_17;
import org.java_websocket.handshake.ServerHandshake;

public class Client {

public static WebSocketClient client;//A73FFE35-C36F-4AF6-91EA-207CA39D186E

public static void main(String[] args) throws URISyntaxException NotYetConnectedException UnsupportedEncodingException InterruptedException {
client = new WebSocketClient(new URI(“ws://api.batorange.com:11002/ws“)) {

@Override
public void onOpen(ServerHandshake arg0) {

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1361  2017-11-16 18:46  websocket\.classpath

     文件        382  2017-04-25 14:06  websocket\.project

     文件        132  2017-11-21 16:45  websocket\.settings\org.eclipse.core.resources.prefs

     文件        598  2015-09-30 10:06  websocket\.settings\org.eclipse.jdt.core.prefs

     文件        279  2017-01-06 10:02  websocket\src\log4j.properties

     文件       2135  2017-11-21 16:44  websocket\src\server\Client.java

     文件       2884  2017-11-20 16:39  websocket\src\server\ServerManager.java

     文件       1997  2017-11-21 15:00  websocket\src\server\ServerSocket.java

     文件        812  2017-11-20 16:39  websocket\src\server\Test.java

     文件       2291  2017-11-21 16:43  websocket\src\server\WebScoketClient.java

     文件       1267  2017-11-21 16:45  websocket\src\util\ConfigCacheUtil.java

     文件       3783  2017-11-21 16:45  websocket\src\util\DateUtil.java

     文件       4191  2017-11-21 16:44  websocket\src\util\FileWriterUtil.java

     文件       1542  2017-11-20 15:31  websocket\src\util\JsonHandle.java

     文件       1635  2017-11-21 16:44  websocket\src\util\LogUtil.java

     文件        224  2017-11-20 16:47  websocket\src\util\UserCache.java

     目录          0  2017-11-20 16:43  websocket\src\server

     目录          0  2017-11-20 17:06  websocket\src\util

     目录          0  2017-11-14 09:56  websocket\.settings

     目录          0  2017-11-20 16:43  websocket\src

     目录          0  2011-10-21 20:46  websocket

----------- ---------  ---------- -----  ----

                25513                    21


评论

共有 条评论