我使用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);
答案 0 :(得分:0)
不,保存在数据库中不是一个好主意。请记住,您只保存会话长度的详细信息,数据库的基本概念是在会话后使用它。如果您的会话由于网络问题而导致间歇性会发生什么?
只使用Map而不是普通数组,使用key作为客户端ID,使用值作为username。删除username将是一个普通的调用,例如map.remove(clientID);
按您的要求编辑:请注意,此代码不完整且只有您提供的代码..
公共类AddClient实现Runnable { 线程t;
private Map<int, String> users = new HashMap <int, String>();
AddClient(String tot) {
t = new Thread(this, tot);
t.start();
}
public void run() {
while (true) {
try {
try {
waitClient();
} catch (Exception ex) {
ex.printStackTrace();
}
int clientId = users.size() + 1;
users.put(clientId, cm.sender);
//set stream to send and receive data
out[clientId] = new ObjectOutputStream(connect.getOutputStream());
out[clientId].flush();
in[clientId] = new ObjectInputStream(connect.getInputStream());
删除用户方法
public synchronized void removeUser(int number){
if(users.containsKey(number)) {
System.out.println("Server removing user " + users.get(number) + "which is client " + number);
users.remove(number);
} else {
System.out.println("User not in session");
}
}