We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6051f3 commit b3dd1dbCopy full SHA for b3dd1db
README.markdown
@@ -20,10 +20,24 @@ Features:
20
21
__Status:__ Connecting with Websocket is production ready. XHR is in beta.
22
23
+
24
## How to use
25
26
Using socket.io-java-client is quite simple. But lets see:
27
28
+Checkout and compile the project:
29
30
+``` bash
31
+git clone git://github.com/Gottox/socket.io-java-client.git
32
+cd socket.io-java-client
33
+ant jar
34
+mv jar/socketio.jar /path/to/your/libs/project
35
+```
36
37
+If you're using ant, change your build.xml to include socketio.jar. If you're eclipse, add the jar to your project buildpath.
38
39
+Afterwards, you'll be able to use this library:
40
41
``` java
42
43
SocketIO socket = new SocketIO("http://127.0.0.1:3001/");
0 commit comments