-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTCPclient.java
59 lines (52 loc) · 1.41 KB
/
TCPclient.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package backend;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
/**
*
* A TCP client that listens for incoming messages in a separate thread.
*
*/
public class TCPclient {
Socket socket;
PrintWriter out;
BufferedReader in;
public TCPclient(String serverAddress, int serverPort) {
try {
socket = new Socket(serverAddress, serverPort);
out = new PrintWriter(socket.getOutputStream(), true);
in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
} catch (IOException e) {
e.printStackTrace();
}
}
public void sendMessage(String message) {
out.println(message);
}
public void sendChar(char message) {
out.write(message);
out.flush();
}
public void startListening() {
new Thread(() -> {
String inputLine;
try {
while ((inputLine = in.readLine()) != null) {
Main.processString(inputLine);
Main.updateGUI();
}
} catch (IOException e) {
e.printStackTrace();
}
}).start();
}
public void close() {
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}