There was an error while loading. Please reload this page.
1 parent 92cb079 commit d08e6d1Copy full SHA for d08e6d1
README.md
@@ -3,13 +3,22 @@ A two way chat program written in JAVA using Networking.
3
There are Two Parts of this Repo:
4
- One that runs on terminal
5
- Another one is a GUI application
6
+
7
## NonGUI Application
8
Just clone this repo and go to the NonGUI folder.
9
Compile all the java files
10
```bash
11
$ javac *.java
12
```
-and run the **DemoServer.java** file first
13
+and run the **DemoServer.java** file first in one terminal window
14
15
$ java DemoServer
16
17
+and then run the **DemoClient.java** files in another terminal window
18
+```bash
19
+ $ java DemoClient
20
+```
21
+now you can type messages from both terminal window and see the chat!
22
23
+_just type **quit** to exit_
24
+## GUI application
0 commit comments