project init

This commit is contained in:
limqhz
2020-01-29 21:50:10 +08:00
parent 3d215fe181
commit d4c677d2b5
821 changed files with 111343 additions and 73 deletions

View File

@@ -0,0 +1,58 @@
package com;
import org.java_websocket.client.WebSocketClient;
import org.java_websocket.drafts.Draft;
import org.java_websocket.handshake.ServerHandshake;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Map;
/**
* This example demonstrates how to create a websocket connection to a server. Only the most important callbacks are overloaded.
*/
public class ExampleClient extends WebSocketClient {
public ExampleClient(URI serverUri, Draft draft) {
super(serverUri, draft);
}
public ExampleClient(URI serverURI) {
super(serverURI);
}
public ExampleClient(URI serverUri, Map<String, String> httpHeaders) {
super(serverUri, httpHeaders);
}
@Override
public void onOpen(ServerHandshake handshakedata) {
send("Hello, it is me. Mario :)");
System.out.println("opened connection");
// if you plan to refuse connection based on ip or httpfields overload: onWebsocketHandshakeReceivedAsClient
}
@Override
public void onMessage(String message) {
System.out.println("received: " + message);
}
@Override
public void onClose(int code, String reason, boolean remote) {
// The codecodes are documented in class org.java_websocket.framing.CloseFrame
System.out.println("Connection closed by " + (remote ? "remote peer" : "us") + " Code: " + code + " Reason: " + reason);
}
@Override
public void onError(Exception ex) {
ex.printStackTrace();
// if the error is fatal then onClose will be called additionally
}
public static void main(String[] args) throws URISyntaxException {
ExampleClient c = new ExampleClient(new URI("ws://localhost:8887")); // more about drafts here: http://github.com/TooTallNate/Java-WebSocket/wiki/Drafts
c.connect();
}
}

View File

@@ -0,0 +1,14 @@
package com;
import java.net.URI;
import java.net.URISyntaxException;
public class TestWebSocket {
public static void main(String args[]) throws URISyntaxException {
}
}