-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathClient.java
59 lines (45 loc) · 1.97 KB
/
Client.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
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
import java.util.Scanner;
public class Client {
public static void main(String[] args) throws IOException {
try{
Scanner sc = new Scanner(System.in);
System.out.println("Digite a IP do servidor: ");
final String IP = sc.nextLine();
System.out.println("Digite a porta do servidor: ");
final int Porta = sc.nextInt();
Socket socketClient = new Socket(IP, Porta);
//Saida de dadoss do cliente
PrintWriter saidasDados = new PrintWriter(socketClient.getOutputStream(), true);
//Entrada de dados vinda do servidor
BufferedReader entradaDados = new BufferedReader(new InputStreamReader(socketClient.getInputStream()));
BufferedReader console = new BufferedReader(new InputStreamReader(System.in));
while (true){
// Requisição do servidor:
String entrada = entradaDados.readLine();
if(entrada == null){
break;
}
System.out.println(entrada);
/* Se entrada de dados vindo do servidor terminar com "Escolha"
habilitamos o buffer de digitação de saidas de dados do cliente*/
if(entrada.endsWith("Escolha:")){
String saida = console.readLine();
saidasDados.println(saida);
}
}
saidasDados.close();
entradaDados.close();
console.close();
socketClient.close();
}
catch (Exception e) {
System.out.println("Erro no cliente ao se conectado ao servidor: " + e.getMessage());
return;
}
}
}