1

我使用 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);
4

1 回答 1

0

不,保存在数据库中不是一个好主意。请记住,您只保存会话长度的详细信息,数据库的基本概念是在会话之后使用它。如果您的会话由于网络问题等而中断,会发生什么?

只需使用 Map 而不是普通数组,使用 key 作为客户端 ID,使用 value 作为用户名。删除用户名将是一个普通调用,例如 map.remove(clientID);

按您的要求进行编辑:请注意,此代码不完整,仅与您提供的一样多..

公共类 AddClient 实现 Runnable { Thread 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());

删除用户方法

公共同步无效删除用户(整数){

            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");
            }
}
于 2013-04-08T11:14:23.670 回答