-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserNameManager.java
64 lines (57 loc) · 2.06 KB
/
UserNameManager.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
60
61
62
63
64
import java.io.*;
import java.util.HashSet;
import java.util.Set;
/*
* Clase para manejar los nombres de usuario
* esta clase se comunica con ClientHandler
* los recursos de esta clase seran compartidos y al mismo tiempo pueden acceder varios hilos
* por lo tanto los metodos seran synchronized
*/
public class UserNameManager {
private static final String USER_FILE = "users.txt";
/**
* Metodo para cargar los usuarios del fichero
* @return
*/
public static synchronized Set<String> loadUsers() {
Set<String> users = new HashSet<>();
try (BufferedReader reader = new BufferedReader(new FileReader(USER_FILE))) {
String line;
while ((line = reader.readLine()) != null) {
users.add(line.trim());
}
} catch (IOException e) {
// System.out.println("Error al leer el archivo de usuarios: " + e.getMessage());
}
return users;
}
public static synchronized void addUser(String username) {
try (FileWriter fw = new FileWriter(USER_FILE, true);
BufferedWriter bw = new BufferedWriter(fw);
PrintWriter out = new PrintWriter(bw)) {
out.println(username);
} catch (IOException e) {
System.out.println("Error al escribir en el archivo de usuarios: " + e.getMessage());
}
}
public static synchronized void removeUser(String username) {
Set<String> users = loadUsers();
if (users.remove(username)) {
try (PrintWriter out = new PrintWriter(new FileWriter(USER_FILE))) {
for (String user : users) {
out.println(user);
}
} catch (IOException e) {
System.out.println("Error al actualizar el archivo de usuarios: " + e.getMessage());
}
}
}
public static void removeUserFile(){
try {
File fichero = new File(USER_FILE);
fichero.delete();
} catch (Exception e) {
System.out.println(e);
}
}
}