我使用 Java 开发了一个客户端/服务器聊天应用程序,我想知道如何从数组中删除用户。当特定客户端登录时,用户名保存在用户名数组中,客户端 ID 保存在客户端数组中。为了让服务器接受多个客户端,我使用线程。现在任何人都可以指导我如何从阵列中删除用户并关闭该用户的连接。
添加新客户端并将 ID 保存在客户端数组中
public class AddClient implements Runnable {
Thread t;
AddClient(String tot) {
t = new Thread(this, tot);
t.start();
}
public void run() {
while (true) {
try {
try {
waitClient();
} catch (Exception ex) {
ex.printStackTrace();
}
for (int i = 0; i < client.length; i++) {
if (client[i] == 0) {
client[i] = i + 1;
id = i;
break;
}
}
//set stream to send and receive data
out[client[id]] = new ObjectOutputStream(connect.getOutputStream());
out[client[id]].flush();
in[client[id]] = new ObjectInputStream(connect.getInputStream());
用户名保存在用户名数组中
username[client[id]] = cm.sender; //Add user in username[] array
删除用户
public synchronized void removeUser(int number) {
int position = number;
System.out.println("Server removing user " + username[number] + "which is client " + number);
for (int i = 0; i <= client.length; i++) {
if (position == client[i]) {
System.out.println("User to be remove found");
try {
client[i + 1] = client[i];
in[position].close();
out[position].close();
username[position] = null;
position = position - 1;
} catch (Exception e) {
e.printStackTrace();
}
}
}
我正在尝试使用 HashTable 添加和删除客户端
public class ChatServerProtocol {
private String nick;
private AddClient a;
private Hashtable<String, AddClient> nicks = new Hashtable<String, AddClient>();
private boolean add_nick(String nick, AddClient a) {
if (nicks.containsKey(nick)) {
return false;
} else {
nicks.put(nick, a);
return true;
}
}
private boolean remove_nick(String nick, AddClient a) {
if (!(nicks.containsKey(nick))) {
return false;
} else {
nicks.remove(nick);
return true;
}
}
public ChatServerProtocol(AddClient a) throws IOException {
nick = null;
a = a;
}
但是现在我如何调用方法 add_nick。每当客户端登录时,用户名都会发送到服务器,服务器会将其读取为 cm.sender。我还需要包含线程变量。那么如何添加用户名以便稍后我可以删除它。
ChatServerProtocol.add_nick(cm.sender);