-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cliente.java
59 lines (47 loc) · 1.62 KB
/
Cliente.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.File;
import java.io.PrintWriter;
import java.util.ArrayList;
public class Cliente {
int id;
String nome;
String cpf;
String telefone;
String endereco;
public static ArrayList<Cliente> clientes = new ArrayList<Cliente>();
public Cliente (int id, String nome, String cpf, String telefone, String endereco) {
this.id = id;
this.nome = nome;
this.cpf = cpf;
this.telefone = telefone;
this.endereco = endereco;
clientes.add(this);
}
public static void ListarClientes() {
for (Cliente cliente : clientes) {
System.out.println(
"ID: " + cliente.id + "\n"
+ " Nome: " + cliente.nome + "\n"
+ " CPF: " + cliente.cpf + "\n"
+ " Telefone: " + cliente.telefone + "\n"
+ " Endereço: " + cliente.endereco
);
}
try {
PrintWriter criaArq = new PrintWriter(new File("ArquivosCSV/Clientes.csv"));
for (Cliente cliente : clientes) {
criaArq.println(cliente.id+ ";" +cliente.nome+";"+cliente.cpf+";"+cliente.telefone+";"+cliente.endereco);
}
criaArq.close();
} catch (Exception e) {
System.out.println("Erro ao salvar Arquivo CSV:" + e.getMessage());
}
}
public static Cliente verificaIdCliente(int id) throws Exception {
for (Cliente cliente : clientes) {
if (cliente.id == id) {
return cliente;
}
}
throw new Exception("Cliente não encontrado");
}
}